diff options
Diffstat (limited to 'tinyc/examples/ex1.c')
-rwxr-xr-x | tinyc/examples/ex1.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tinyc/examples/ex1.c b/tinyc/examples/ex1.c new file mode 100755 index 000000000..28139f92e --- /dev/null +++ b/tinyc/examples/ex1.c @@ -0,0 +1,8 @@ +#! /usr/local/bin/tcc -run +#include <tcclib.h> + +int main() +{ + printf("Hello World\n"); + return 0; +} |