9 lines
75 B
Plaintext
9 lines
75 B
Plaintext
package test
|
|
|
|
fun foo(n: Int) {
|
|
println(n)
|
|
}
|
|
|
|
fun bar() {
|
|
foo(10)
|
|
} |