diff options
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)); }; |