fastinahurry/main.cc
xbazzi 8861f112f8
All checks were successful
Simple Mirror to GitHub / mirror (push) Successful in 11s
Remove all that nasty html
2025-08-18 21:53:24 -06:00

18 lines
349 B
C++

// C++ Includes
#include <cstdint>
#include <cassert>
#include <iostream>
// FastInAHurry Includes
#include <Controller.hh>
#include <Algo.hh>
int main(int argc, char* argv[]) {
for (uint8_t i = 0; i < argc; i++) {
std::printf("argument[%d]: %s\n", i, argv[i]);
}
Controller ctlr(argc, argv);
ctlr.start();
return 0;
}