10 lines
139 B
Plaintext
10 lines
139 B
Plaintext
|
int :: main() {
|
||
|
char* str;
|
||
|
int x;
|
||
|
str = "Testingggs";
|
||
|
x = 14;
|
||
|
|
||
|
PrintString(str);
|
||
|
PrintInteger(x);
|
||
|
return (0);
|
||
|
}
|