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