Erythro/tests/old/strings

10 lines
139 B
Plaintext
Raw Normal View History

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