mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-14 10:57:08 +03:00
9 lines
105 B
C
9 lines
105 B
C
|
#!/usr/local/bin/tcc -run
|
||
|
#include <tcclib.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
printf("Hello World\n");
|
||
|
return 0;
|
||
|
}
|