Newer
Older
Import / research / other / WakeXBMC / hello.c
@John Ryland John Ryland on 22 Dec 2020 105 bytes import NUC files
#include <stdio.h>
#include <unistd.h>

int main()
{
printf("hello world\n");
write(0, "hello\n", 6);
}