#include <memory>
#include <utility>
int main(int argc, const char* argv[]) {
int saturation = 255;
for (int value = 0; value < 255; value += 3) {
int v = value * value / 255;
}
})),
hbox({
text(
"magenta line:"),
hbox(std::move(magenta_line))}),
hbox({
text(
"Yellow line :"),
hbox(std::move(yellow_line))}),
})),
});
screen.Print();
return 0;
}