7 lines
100 B
Plaintext
Vendored
7 lines
100 B
Plaintext
Vendored
fun foo(a: Int, s: String, i: Int = a + 1): Int {
|
|
return i * a
|
|
}
|
|
|
|
fun test() {
|
|
foo(1, "2")
|
|
} |