Files
alecc/examples/hello.c
2025-08-21 16:49:30 +02:00

10 líneas
153 B
C

// Example C programs for testing
// examples/hello.c
int printf(const char* format, ...);
int main() {
printf("Hello, World!\n");
return 0;
}