Damn I didn't even know this language could do that, I guess an issue
with namespacing fixed itself
This commit is contained in:
@@ -101,9 +101,9 @@ Print :: (string: String, args: ..)
|
||||
buffer_len: S64
|
||||
|
||||
arg_counter := 0
|
||||
for i := 0, i < Length(string), i+=1
|
||||
for i := 0, i < Len(string), i+=1
|
||||
if string[i] == '%'
|
||||
Assert(arg_counter < Length(args), "Passing too many [%] to a print lambda")
|
||||
Assert(arg_counter < Len(args), "Passing too many [%] to a print lambda")
|
||||
arg := args[arg_counter++]
|
||||
|
||||
if arg.type == S64
|
||||
|
||||
Reference in New Issue
Block a user