training wheels off

This commit is contained in:
2025-03-14 16:16:55 -05:00
parent 2b1293d414
commit 284f6b2330

View File

@@ -39,10 +39,7 @@ void App::run() {
while (!done && !modules.empty()) { while (!done && !modules.empty()) {
for(auto it = modules.begin(); it != modules.end(); it++) { for(auto it = modules.begin(); it != modules.end(); it++) {
std::cout << "Running module: " << (*it)->getName() << std::endl;
(*it)->run(); (*it)->run();
std::cout << "Module ran successfully\n";
end();
} }
} }