General Purpose library for Freestanding C++ and POSIX systems
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 

11 行
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);
}
}