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