tcc-stupidos/examples/ex1.c

9 lines
103 B
C
Raw Normal View History

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