c/hello.c

8 lines
107 B
C
Raw Normal View History

2023-01-13 13:01:38 +00:00
#include <stdio.h>
#include <stdlib.h>
int main(void) {
puts("Hello, world!");
return EXIT_SUCCESS;
}