added examples

This commit is contained in:
bellard
2003-10-04 21:25:32 +00:00
parent feed3262c9
commit 9890ea1233
6 changed files with 161 additions and 5 deletions

8
ex1.c Executable file
View File

@ -0,0 +1,8 @@
#! /usr/local/bin/tcc -run
#include <tcclib.h>
int main()
{
printf("Hello World\n");
return 0;
}