반드시 블록문은 중괄호 로 묶어서 작성하기
// good case if(canHaveIssues()){ functionA(); } // bad case if(canHaveIssues()) functionA();