aboutsummaryrefslogtreecommitdiff
path: root/code/main.felan
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2025-04-30 02:43:55 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2025-04-30 02:43:55 +0330
commit141e7fb5fe016bc754d600159b479f7e11b407d8 (patch)
treef9cfe2a1ed519b84207148311f3fb3b8dc90693e /code/main.felan
parent3a4fa4b89280046885dc044ce4f9761f5eeaa9e1 (diff)
fixing some bugs in new way of operators and printing
Diffstat (limited to 'code/main.felan')
-rw-r--r--code/main.felan7
1 files changed, 4 insertions, 3 deletions
diff --git a/code/main.felan b/code/main.felan
index 6107731..4e3a4b4 100644
--- a/code/main.felan
+++ b/code/main.felan
@@ -1,9 +1,10 @@
@import("basic.felan");
main :: () -> void {
- a : i8 = 65;
- b : i8 = 70;
- a+b;
+ a := false;
+ b :: true;
+ if a == b {
+ }
};
__sum__ :: (left:i8,right:i8)->i8{