aboutsummaryrefslogtreecommitdiff
path: root/code/lib/io.felan
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2025-06-10 17:23:56 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2025-06-10 17:23:56 +0330
commit71b4af57bdcc91d948d436a459a223c402a6e17d (patch)
treee22558095e072b6168cb8b6f6bb8235cab00d616 /code/lib/io.felan
parentf6c029cd8842e13069cbd01d2dccc9093f97b8c1 (diff)
add more functions to string
Diffstat (limited to 'code/lib/io.felan')
-rw-r--r--code/lib/io.felan2
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;