summaryrefslogtreecommitdiff
path: root/05/tcc-0.9.27/examples/ex1.c
diff options
context:
space:
mode:
Diffstat (limited to '05/tcc-0.9.27/examples/ex1.c')
-rwxr-xr-x05/tcc-0.9.27/examples/ex1.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/05/tcc-0.9.27/examples/ex1.c b/05/tcc-0.9.27/examples/ex1.c
new file mode 100755
index 0000000..3d2a3e1
--- /dev/null
+++ b/05/tcc-0.9.27/examples/ex1.c
@@ -0,0 +1,8 @@
+#!/usr/local/bin/tcc -run
+#include <tcclib.h>
+
+int main()
+{
+ printf("Hello World\n");
+ return 0;
+}