tinycc/examples/ex1.c

9 lines
103 B
C
Raw Normal View History

#!/usr/bin/env tcc -run
2003-10-05 05:25:32 +08:00
#include <tcclib.h>
2009-04-18 20:31:35 +08:00
int main()
2003-10-05 05:25:32 +08:00
{
printf("Hello World\n");
return 0;
}