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