= { ... }
예:
fun sum(a: Int, b: Int) = { a + b } // The return type of this function is '() -> Int'.
빠른 수정에서는 중괄호를 제거합니다.
fun sum(a: Int, b: Int) = a + b