tinycc/examples/ex1.c

9 lines
103 B
C

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