xhartae/program/hello_world.c

8 lines
78 B
C

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