1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* * Hello World, system test version * * We don't have the benefit of libc, just builtin C primitives and * whatever is in minilib. */ #include <minilib.h> int main(void) { ml_printf("Hello World\n"); return 0; }