guix/make/examples/trivial/hello.c

8 lines
101 B
C

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