9 lines
151 B
Plaintext
9 lines
151 B
Plaintext
|
|
fun hello()
|
|
return [1, 2, 3], "hello";
|
|
|
|
print((a, b, c) = hello(), '\n');
|
|
|
|
print('a = ', a, '\n');
|
|
print('b = ', b, '\n');
|
|
print('c = ', c, '\n'); |