1 2 3 4 5 6 7 8 9 10 11
#include "../cpp-utils-master/ui/ui/ui.h" using namespace ui; int ui_main() { window w(256, 256); w << "Hello World!"; w.waitkey(); return 0; }