Files
cpp09/ex01/main.cpp
2025-08-27 15:58:23 +02:00

22 lines
239 B
C++

#include "RPN.hpp"
int main(int ac, char **av)
{
if (ac == 2)
{
try
{
rpn(av[1]);
}
catch(std::exception &e)
{
std::cerr << e.what() << std::endl;
}
}
else
{
std::cerr << "Error: wrong usage." << std::endl;
}
}