General Purpose library for Freestanding C++ and POSIX systems
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 

11 rindas
168 B

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