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
ex5.c Normal file
View File

@ -0,0 +1,8 @@
#include <stdlib.h>
#include <stdio.h>
int main()
{
printf("Hello World\n");
return 0;
}