#include #include "syscall.hpp" gp::buffer hello = "Hello world\n"; extern "C" { void _start() { write(1, hello); exit(0); } }