-
-
Notifications
You must be signed in to change notification settings - Fork 770
Expand file tree
/
Copy pathhello.c
More file actions
15 lines (14 loc) · 875 Bytes
/
Copy pathhello.c
File metadata and controls
15 lines (14 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#if 0
/*─────────────────────────────────────────────────────────────────╗
│ To the extent possible under law, Justine Tunney has waived │
│ all copyright and related or neighboring rights to this file, │
│ as it is written in the following disclaimers: │
│ • http://unlicense.org/ │
│ • http://creativecommons.org/publicdomain/zero/1.0/ │
╚─────────────────────────────────────────────────────────────────*/
#endif
#include "libc/stdio/stdio.h"
int main() {
printf("%s\n", "hello world");
return 0;
}