reliant/hello/hello.c
2025-12-26 19:50:36 -08:00

7 lines
100 B
C

#include <stdio.h>
int main(int argc, const char **argv) {
puts("Hello, world!\n");
return 0;
}