summaryrefslogtreecommitdiff
path: root/test.toc
diff options
context:
space:
mode:
Diffstat (limited to 'test.toc')
-rw-r--r--test.toc13
1 files changed, 9 insertions, 4 deletions
diff --git a/test.toc b/test.toc
index c31ddda..879562f 100644
--- a/test.toc
+++ b/test.toc
@@ -1,11 +1,16 @@
#include "std/io.toc";
f ::= fn(x :: ..) int {
- x[0] + x[1]
+ total := 0;
+ for a := x {
+ total += a;
+ }
+ total
};
main ::= fn() {
- puti(f(1,2));
-};
+ puti(f(1,2,3));
+ puti(f(1,2,3,4,5,6));
+ puti(f(1,2,3,4));
-main(); \ No newline at end of file
+};