Skip to content

Flukas88/cppstack

Repository files navigation

cppstack

CMake on a single platform

Abstract

A Reverse Polish notation calculator in modern C++17 with unittests

How to build it

      mkdir build 
      cmake . -Bbuild
      cd build
      make
      cd ..

How to use it

      ./build/cppstack -e "8 2 5 x + 1 3 2 x + 4 - /"
      ./build/cppstack -h

How to Unittest

To manually run them (after build)

    ./build/tests