mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 23:13:34 +00:00
8 lines
113 B
C
8 lines
113 B
C
|
int main() {
|
||
|
FILE *f;
|
||
|
f = fopen("/dev/null", "w");
|
||
|
fprintf(f, "hello world\n");
|
||
|
fclose(f);
|
||
|
return 0;
|
||
|
}
|