#include //Library function printf #include //File descriptors // 0 stdin // 1 stdout // 2 stderr int main(void){ // man 3 printf printf("Hello!\n"); //TODO LIBC and syscall //write(1, "Hello!\n", 7); //syscall(1, 1, "Hello!\n", 7); return 0; }