templates/c-hello/hello.c
Eelco Dolstra 09b1e7d224 gnu-hello -> c-hello
By dropping the dependency on an external source repo, it becomes more
representative of a typical flake.
2021-07-23 19:50:20 +02:00

6 lines
89 B
C

#include "stdio.h"
int main(int argc, char * * argv)
{
printf("Hello Nixers!\n");
}