8 lines
79 B
Plaintext
8 lines
79 B
Plaintext
// OPTION: 1
|
|
fun foo(n : Int): Int {
|
|
val m = n + 1
|
|
m/0
|
|
|
|
return 0
|
|
}
|