Newer
Older
UbixOS / contrib / tcc / examples / ex1.c
@Christopher W. Olsen Christopher W. Olsen on 29 Jan 2020 105 bytes TinyCC
#!/usr/local/bin/tcc -run
#include <tcclib.h>

int main()
{
    printf("Hello World\n");
    return 0;
}