summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/main.felan2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/main.felan b/test/main.felan
index ed76449..c0414ec 100644
--- a/test/main.felan
+++ b/test/main.felan
@@ -3,7 +3,7 @@ main :: () -> void {
b := a;
c : u64 = 5;
if a == b
- print_u64 2;
+ print_u64 (2 + 4)*2;
else
print_u64 c;
};