6 lines
87 B
Plaintext
Vendored
6 lines
87 B
Plaintext
Vendored
import kotlin.math.pow
|
|
|
|
// WITH_RUNTIME
|
|
fun test(x: Double, y: Double) {
|
|
x.pow(y)
|
|
} |