tinycc/examples/ex1.c
Thomas Preud'homme 27a428cd0f Make ex1.c and ex4.c be executable on any systems
Use /usr/bin/env to make ex1.c and ex4.c on any systems, wherever is
installed tcc.
2011-07-07 12:17:04 +02:00

9 lines
103 B
C
Executable File

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