guix/make/examples/simple-header/hello.c

10 lines
124 B
C

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