5 lines
98 B
Kotlin
5 lines
98 B
Kotlin
fun sum(a:Int): Int = a + 33
|
|
|
|
fun main(args:Array<String>) {
|
|
if (sum(2) != 35) throw Error()
|
|
} |