7 lines
104 B
Plaintext
Vendored
7 lines
104 B
Plaintext
Vendored
import kotlin.math.abs
|
|
|
|
// WITH_RUNTIME
|
|
fun x() {
|
|
val a = 4
|
|
val b = abs(a).let { println(it) }
|
|
} |