summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/main.felan4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/main.felan b/test/main.felan
index 4ca3372..0bd20fa 100644
--- a/test/main.felan
+++ b/test/main.felan
@@ -1,9 +1,9 @@
main :: () -> void {
- a : u64 = fun();
+ a : u64 = fun(2);
print_u64 a + 5;
};
fun :: (b:u64)->u64 {
- return 1;
+ return b+1;
};