1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-15 15:02:42 +01:00
nix/examples/trivial/hello.c
2004-07-06 11:43:37 +00:00

7 lines
101 B
C

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