Kotlin Koans 01 Hello, world!

目次

Simple Functions (Playground)

Description

Take a look at function syntax and make the function start return the string "OK".

In the tasks the function TODO() is used that throws an exception. Your job during the koans will be to replace this function invocation with a meaningful code according to the problem.

関数構文 を見て、 "OK" を返す start 関数を実装してください。

タスクでは、例外をthrowする TODO() 関数が使用されます。Koansでは、この TODO() 関数呼び出しを、問題に応じた意味のあるコードに書き換えていきます。

Code

fun start(): String = "OK"

Memo

fun start() = "OK"

Kotlinにおいて「関数は第一級オブジェクト」ということを言いたい。のだと思う。

← Posts