Files
Noja/samples/func.noja
T
2021-11-02 13:24:52 +00:00

10 lines
105 B
Plaintext

fun x(a, b, c)
print(a, b, c);
print(x(1, 2, 3));
fun hello()
print('hel\nlo', 2);
return hello();