aboutsummaryrefslogtreecommitdiff
path: root/ex5.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 /ex5.c
parentfeed3262c91df6e491e3f529192acdcc6a72f157 (diff)
downloadtinycc-9890ea1233a1caf84782a0ab364622a8444e0519.tar.gz
tinycc-9890ea1233a1caf84782a0ab364622a8444e0519.tar.bz2
added examples
Diffstat (limited to 'ex5.c')
-rw-r--r--ex5.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/ex5.c b/ex5.c
new file mode 100644
index 0000000..da625c5
--- /dev/null
+++ b/ex5.c
@@ -0,0 +1,8 @@
+#include <stdlib.h>
+#include <stdio.h>
+
+int main()
+{
+ printf("Hello World\n");
+ return 0;
+}