summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/main.felan6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/main.felan b/test/main.felan
index 3cf7788..6879dd2 100644
--- a/test/main.felan
+++ b/test/main.felan
@@ -1,12 +1,12 @@
main :: () -> void {
- a := fun(2, 3,);
- print(a+5+t);
+ a := fun(-2, 3,);
+ print(a);
};
t :: fun(1,2);
fun :: (a:u64, b:u64)->u64 {
- return b+a*b-b/a%2;
+ return a+b;
};
print :: (a:u64)->void {