xhartae/program/hello_world.c

8 lines
78 B
C
Raw Normal View History

2023-11-13 21:04:20 -05:00
#include <stdio.h>
int main (void) {
puts ("Hello world!");
return (0);
}