lang-bootstrap/05/tcc-0.9.27/examples/ex1.c

9 lines
105 B
C
Raw Normal View History

2022-02-18 12:36:57 -05:00
#!/usr/local/bin/tcc -run
#include <tcclib.h>
int main()
{
printf("Hello World\n");
return 0;
}