Erythro/tests/strings
Curle 86b1688035
Start work on string parsing.
Generates a valid AST tree, but the program segfaults. Need to look into it.
2020-11-22 01:44:54 +00:00

10 lines
139 B
Plaintext

int :: main() {
char* str;
int x;
str = "Testingggs";
x = 14;
PrintString(str);
PrintInteger(x);
return (0);
}