lumiera_/src/tool/hello.c

14 lines
290 B
C

/*
* hello.c - demonstrates how to build a standalone tool (C source)
* integrated into the SCons based build system of Lumiera
*/
#include <stdio.h>
int main(int argc, char* argv[])
{
(void)argc;
(void)argv;
printf("hello lumiera world\n");
return 0;
}