General Purpose library for Freestanding C++ and POSIX systems
25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
|
- #include <gp/containers/array.hpp>
- #include "syscall.hpp"
-
- gp::buffer<char> hello = "Hello world\n";
-
- extern "C" {
- void _start() {
- write(1, hello);
- exit(0);
- }
- }
|