mirror of
git://repo.or.cz/tinycc.git
synced 2026-06-17 15:44:18 +08:00
9 lines
103 B
C
Executable File
9 lines
103 B
C
Executable File
#!/usr/bin/env tcc -run
|
|
#include <tcclib.h>
|
|
|
|
int main()
|
|
{
|
|
printf("Hello World\n");
|
|
return 0;
|
|
}
|