Files
C-examples/hello_world/hello.c
2025-12-27 16:45:51 +03:00

7 lines
77 B
C

int puts(char *str);
int main(){
puts("Hello, World!");
return 0;
}