This commit is contained in:
2018-05-05 00:50:40 +02:00
commit a5ce351f91
3 changed files with 267 additions and 0 deletions

13
examples/thing.src Normal file
View File

@@ -0,0 +1,13 @@
import stdio
def f(x, y, z)
g(x, 2)
end
def g(x, y)
x
end
def main()
printf("hi %d!\n", f(1, 2, 3))
end