8 lines
118 B
Plaintext
Vendored
8 lines
118 B
Plaintext
Vendored
fun foo(a: Int, s: String, i: Int = a + 1): Int {
|
|
val t = i * 2
|
|
return i - t
|
|
}
|
|
|
|
fun test() {
|
|
foo(1, "2")
|
|
} |