diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-01-30 08:54:18 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-01-30 08:54:18 +0330 |
commit | 9f2b1bdcfbbc084876c3ab7cc2cb8c15ffb88184 (patch) | |
tree | cf46656b50fa3d868a7bed4821667f6a31ea922c /test | |
parent | d32d148cee5b3aec5e8943738aa30139d442478c (diff) |
added assign operator
Diffstat (limited to 'test')
-rw-r--r-- | test/main.felan | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/test/main.felan b/test/main.felan index d78dfdf..cbbc0ef 100644 --- a/test/main.felan +++ b/test/main.felan @@ -1,7 +1,9 @@ main :: () -> void { - print_u64 a; + print_u64 b; + b = 3; + print_u64 b; + b = 7; print_u64 b; }; -a := 123; -b :: 124; +b := 124; |