6 lines
57 B
Text
6 lines
57 B
Text
|
fun foo(name) {
|
||
|
print("hello " + name);
|
||
|
}
|
||
|
|
||
|
foo("bar");
|