Files
Noja/examples/return.noja
T
2022-04-06 13:40:55 +02:00

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');