15 lines
135 B
Plaintext
15 lines
135 B
Plaintext
|
|
fun k(k)
|
|
return k();
|
|
|
|
k(k);
|
|
|
|
fun x(a, b, c)
|
|
print(a, b, c);
|
|
|
|
print(x(1, 2, 3));
|
|
|
|
fun hello()
|
|
print('hel\nlo', 2);
|
|
|
|
return hello(); |