Cleaned up the TokenStringify function a bit (ignore the returning of a local variable) and updated the tokenizer to better handle new lines.

This commit is contained in:
2025-01-08 02:40:05 -06:00
parent 6d3f90183e
commit 428d674f54
3 changed files with 43 additions and 27 deletions
-1
View File
@@ -29,7 +29,6 @@ int main(int argc, char** argv) {
return 0;
}
else printf("Found %d tokens.", tokens->Size);
for(int i = 0; i < tokens->Size; i++) {
Token* token = tokens->Items[i];