return
if
예:
if(foo()) { return true; } else { return false; }
빠른 수정이 적용된 후 코드는 다음과 같습니다:
return foo();