Add test .schala file

This commit is contained in:
greg 2016-12-21 03:03:51 -08:00
parent c18c1a639a
commit 6ed67cd325
1 changed files with 12 additions and 0 deletions

12
test.schala Normal file
View File

@ -0,0 +1,12 @@
fn a(x)
x + 20
end
fn x(x)
x + a(9000)
end
a(0)
x(1)