mirror of
https://github.com/frida/tinycc
synced 2024-11-28 02:29:38 +03:00
27a428cd0f
Use /usr/bin/env to make ex1.c and ex4.c on any systems, wherever is installed tcc.
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;
|
|
}
|