Add workflow + examples + tests

This commit is contained in:
ArthurSonzogni
2025-04-24 03:02:10 +02:00
parent f128c442cc
commit 45bf24f8ea
10 changed files with 243 additions and 467 deletions

View File

@@ -19,7 +19,7 @@ using namespace ftxui;
int main() {
auto screen = ScreenInteractive::TerminalOutput();
std::array<int, 30> values;
for (int i = 0; i < values.size(); ++i) {
for (size_t i = 0; i < values.size(); ++i) {
values[i] = 50 + 20 * std::sin(i * 0.3);
}