diff options
Diffstat (limited to 'tinyc/examples/ex5.c')
-rw-r--r-- | tinyc/examples/ex5.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tinyc/examples/ex5.c b/tinyc/examples/ex5.c new file mode 100644 index 000000000..156425e39 --- /dev/null +++ b/tinyc/examples/ex5.c @@ -0,0 +1,8 @@ +#include <stdlib.h> +#include <stdio.h> + +int main() +{ + printf("Hello World\n"); + return 0; +} |