Merge branch 'main' into main

This commit is contained in:
Miko
2025-04-30 14:39:52 -04:00
committed by GitHub
19 changed files with 566 additions and 13 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);
}