summaryrefslogtreecommitdiff
path: root/code
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2025-04-09 02:52:09 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2025-04-09 02:52:09 +0330
commit44420249b454a4d1b1322c22a344a8b1b60fa3bd (patch)
tree842ed96989b8e43931b16f6d8927f1f8fa33d812 /code
parent90690900cedbbf8004f5b452dae04166818f99fc (diff)
add putc keyword to print char
remove print_u64
Diffstat (limited to 'code')
-rw-r--r--code/main.felan2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/main.felan b/code/main.felan
index 5609e27..70c08da 100644
--- a/code/main.felan
+++ b/code/main.felan
@@ -19,5 +19,5 @@ usize :: u64;
main :: () -> void {
a := 'a';
- print_u64 (if a == 97 1 else 0);
+ putc a;
};