Files
Noja/examples/args.noja
T
2022-03-13 15:40:10 +01:00

10 lines
135 B
Plaintext

fun x(a, b, c)
print('a = ', a, '\nb = ', b, '\nc = ', c, '\n\n');
x(1, 2, 3, 4, 5);
x(1, 2, 3, 4);
x(1, 2, 3);
x(1, 2);
x(1);
x();