mirror of
https://github.com/frida/tinycc
synced 2024-11-28 18:43:07 +03: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;
|
||
|
}
|