diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-06-10 17:23:56 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-06-10 17:23:56 +0330 |
commit | 71b4af57bdcc91d948d436a459a223c402a6e17d (patch) | |
tree | e22558095e072b6168cb8b6f6bb8235cab00d616 /code/lib/io.felan | |
parent | f6c029cd8842e13069cbd01d2dccc9093f97b8c1 (diff) |
add more functions to string
Diffstat (limited to 'code/lib/io.felan')
-rw-r--r-- | code/lib/io.felan | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/lib/io.felan b/code/lib/io.felan index 413da8d..d470331 100644 --- a/code/lib/io.felan +++ b/code/lib/io.felan @@ -72,7 +72,7 @@ _print_unsigned :: (comptime t:type, value:t) -> void { } {} while i < NUMBERS_SIZE - 1 { - @putc(numbers[i]); + print_char(numbers[i]); i += 1; } return; |