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