aboutsummaryrefslogtreecommitdiff
path: root/ex1.c
diff options
context:
space:
mode:
authorbellard <bellard>2003-10-04 21:25:32 +0000
committerbellard <bellard>2003-10-04 21:25:32 +0000
commit9890ea1233a1caf84782a0ab364622a8444e0519 (patch)
tree48bf2d06c42ac7432207a1d0c579263b9a1144b6 /ex1.c
parentfeed3262c91df6e491e3f529192acdcc6a72f157 (diff)
downloadtinycc-9890ea1233a1caf84782a0ab364622a8444e0519.tar.gz
tinycc-9890ea1233a1caf84782a0ab364622a8444e0519.tar.bz2
added examples
Diffstat (limited to 'ex1.c')
-rwxr-xr-xex1.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/ex1.c b/ex1.c
new file mode 100755
index 0000000..2dcff7d
--- /dev/null
+++ b/ex1.c
@@ -0,0 +1,8 @@
+#! /usr/local/bin/tcc -run
+#include <tcclib.h>
+
+int main()
+{
+ printf("Hello World\n");
+ return 0;
+}