mirror of
https://github.com/mirror/tinycc.git
synced 2024-12-28 04:00:06 +08:00
9 lines
107 B
C
Executable File
9 lines
107 B
C
Executable File
#! /usr/local/bin/tcc -run
|
|
#include <tcclib.h>
|
|
|
|
int main()
|
|
{
|
|
printf("Hello World\n");
|
|
return 0;
|
|
}
|