Lumiera 0.pre.04~rc.1
»edit your freedom«
Loading...
Searching...
No Matches
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
13int
14main (int argc, char* argv[])
15 {
16 (void)argc;
17 (void)argv;
18 printf("hello lumiera world\n");
19 return 0;
20 }
int main()
Definition main.c:37