11 lines
144 B
Kotlin
11 lines
144 B
Kotlin
package codegen.function.sum_silly
|
|
|
|
import kotlin.test.*
|
|
|
|
// FIXME: has no checks
|
|
|
|
fun sum(a:Int, b:Int):Int {
|
|
var c:Int
|
|
c = a + b
|
|
return c
|
|
} |