summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2025-01-27 01:25:24 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2025-01-27 01:25:24 +0330
commit64331c144518b8ab1c3cf08473771e0d3f14f67b (patch)
treec378fccbddcc4e0972a7a426b4bf464efc1129bf /test
parentbb87887ec288f341256d324f271bac6267fc83f4 (diff)
add print_u64 to be able to print u64 numbers
Diffstat (limited to 'test')
-rw-r--r--test/main.felan10
1 files changed, 2 insertions, 8 deletions
diff --git a/test/main.felan b/test/main.felan
index 9c39bc6..2858216 100644
--- a/test/main.felan
+++ b/test/main.felan
@@ -1,10 +1,4 @@
-main : ()->void : () -> void {
- a();
- a();
-};
-
-a :: () -> void {
- print;
- print;
+main :: () -> void {
print;
+ print_u64 158234;
};