Check out the function syntax and change the code to make the function start return the string "OK".
In the Kotlin Koans tasks, the function TODO() will throw an exception. To complete Kotlin Koans, you need to replace this function invocation with meaningful code according to the problem.
fun start(): String = TODO()
fun start(): String = "OK"
“OK” 문자열을 반환하도록 코드를 변경하는 문제입니다.
코틀린 함수의 기본 형태는 아래와 같습니다.
fun 함수명(변수): 리턴타입 {
return 값
}
코틀린에서 return 타입은 추론이 가능하기 때문에 생략 가능합니다.
중괄호 { } 대신 등호 = 를 사용하게 되는 경우 return문 생략이 가능합니다.
fun 함수명(변수): 리턴타입 = 리턴값
위의 개념을 적용하여
정답으로 아래와 같이 코드를 작성하였습니다.
fun start(): String = "OK"