Add support for functions up to arity 6

This commit is contained in:
jonathandturner
2016-03-02 10:49:24 -05:00
parent 0fd1af9c8d
commit 54279fd75f
4 changed files with 429 additions and 66 deletions

View File

@@ -0,0 +1,5 @@
fn f(a, b, c, d, e, f) {
a - b * c - d * e - f
}
print(f(100, 5, 2, 9, 6, 32))