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