Lumiera  0.pre.03
»edit your freedom«
hello.c
Go to the documentation of this file.
1 /*
2  * hello.c - demonstrates how to build a standalone tool (C source)
3  * integrated into the SCons based build system of Lumiera
4  */
5 
6 
11 #include <stdio.h>
12 
13 int
14 main (int argc, char* argv[])
15  {
16  (void)argc;
17  (void)argv;
18  printf("hello lumiera world\n");
19  return 0;
20  }
int main(int argc, const char *argv[])
run all tests or any single test specified in the first command line argument.
Definition: testrunner.cpp:47