cl-hello-world/hello.c

6 lines
74 B
C

#include <stdio.h>
int main() {
puts("Hello world!");
return 0;
}