Cosmetic changes
This commit is contained in:
@@ -99,9 +99,9 @@ Print :: (string: String, args: ..)
|
||||
buffer_len: S64
|
||||
|
||||
arg_counter := 0
|
||||
for i := 0, i < length_of(string), i+=1
|
||||
for i := 0, i < Length(string), i+=1
|
||||
if string[i] == '%'
|
||||
Assert(arg_counter < length_of(args), "Passing too many [%] to a print lambda")
|
||||
Assert(arg_counter < Length(args), "Passing too many [%] to a print lambda")
|
||||
arg := args[arg_counter++]
|
||||
|
||||
if arg.type == S64
|
||||
|
||||
Reference in New Issue
Block a user