Arthur Sonzogni
2025-04-29 15:11:10 +02:00
committed by GitHub
parent 07fd3e685a
commit 10d73d365f
18 changed files with 546 additions and 14 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);
}