1
0
Fork 0
mirror of https://git.freebsd.org/ports.git synced 2025-07-04 19:09:16 -04:00
ports/devel/emscripten/files/hello_world.c
2025-01-02 19:03:31 -08:00

7 lines
76 B
C

#include <stdio.h>
int main() {
printf("Hello World!\n");
return 0;
}