diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-01-28 00:48:10 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-01-28 00:48:10 +0330 |
commit | 12219a3af22fe4f17027dff43cfb459fef62eaa2 (patch) | |
tree | c70858a6ff43615e97344d880af72edd3dc09ab4 /test | |
parent | 7a8b8ff4bee2373e1e0f3b2b1837dc25041e1a1d (diff) |
added constant values
Diffstat (limited to 'test')
-rw-r--r-- | test/main.felan | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/main.felan b/test/main.felan index 63ec640..e13678c 100644 --- a/test/main.felan +++ b/test/main.felan @@ -1,3 +1,5 @@ main :: () -> void { - print_u64 158234; + a : u64 : 1423; + a : u64 : 14253; + print_u64 a; }; |