University project mainly involving Mersenne numbers.
Note
This step needs to be done with every code change.
cmake -B build
cmake --build build
./build/main
Alternatively, if you want to pipe user input you can do it like so:
./build/main < ./input/mock_input.txt
Get-Content ./input/mock_input.txt | ./build/main
.\build\main < .\input\mock_input.txt
./build/test/all_tests
ctest # This is an alternative but since this project uses gtest, the display
# of the tests will be worse.