schala/test.schala
2017-09-19 22:10:56 -07:00

13 lines
58 B
Plaintext

fn a(x)
x + 20
end
fn x(x)
x + a(9000)
end
a(0)
x(1)