summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2025-02-13 16:42:08 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2025-02-13 16:42:08 +0330
commitfe459ce514c3dd6352bbc88f9184cb79f35b9cb4 (patch)
treea3ff67584af541fa505bcfbd6aef75202931ca4c /test
parent441519c4cf0ba7b4d63a2cd761e5553ea925de32 (diff)
add == != > >= < <=
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 a52421a..ed76449 100644
--- a/test/main.felan
+++ b/test/main.felan
@@ -1,8 +1,8 @@
main :: () -> void {
- b := false;
a := 2;
+ b := a;
c : u64 = 5;
- if b
+ if a == b
print_u64 2;
else
print_u64 c;