From a839ff6229f4ae1415dddd5995781acb4bb599e1 Mon Sep 17 00:00:00 2001 From: A404M Date: Tue, 10 Jun 2025 00:39:11 +0330 Subject: fix some return type issues --- code/lib/io.felan | 8 -------- 1 file changed, 8 deletions(-) (limited to 'code/lib/io.felan') 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)); }; -- cgit v1.2.3