Skip to content

Commit

Permalink
feat(lab3): fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ThreeToads committed Jun 9, 2024
1 parent a4ec209 commit 46e67d6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/kokin_sort_station_org/src/Console_app.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ void ConsoleApp::printHelp() {
}

void ConsoleApp::evaluateExpression(const std::string& expression) {
std::string result = std::to_string(sortStation.evaluateCalculate(expression));
std::string result = std::to_string(sortStation
.evaluateCalculate(expression));
std::cout << "Result: " << result << std::endl;
}

0 comments on commit 46e67d6

Please sign in to comment.