diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-06-10 00:39:11 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-06-10 00:40:03 +0330 |
commit | a839ff6229f4ae1415dddd5995781acb4bb599e1 (patch) | |
tree | 55015a667e09c974c38b689ae8245fa2696eca55 /code/lib/io.felan | |
parent | 91214dfb533ac693880ef06b3e990d944009d2e4 (diff) |
fix some return type issues
Diffstat (limited to 'code/lib/io.felan')
-rw-r--r-- | code/lib/io.felan | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/code/lib/io.felan b/code/lib/io.felan index c486902..413da8d 100644 --- a/code/lib/io.felan +++ b/code/lib/io.felan @@ -14,14 +14,6 @@ println :: (value:anytype) -> void { print_char('\n'); }; -print :: (value:string) -> void { - i := 0; - while i < @cast(value.length,i64) { - print_char(value[i]); - i += 1; - } -}; - print_char :: (value:u8) -> void { putchar(@cast(value,i32)); }; |