Erythro/tests/printf

6 lines
98 B
Plaintext
Raw Permalink Normal View History

int :: printf(char* format);
int :: main () {
printf("%s\r\n", "hi there");
return (0);
}