RDCalc
is a simple, recursive descent-based CLI calculator. It analyzes mathematical expression using grammars and calculates the result.
You can run RDCalc
with (also see Building from source)
make run <math expression>$
Supported symbols: (
, )
, *
, /
, +
, -
and numbers. You have to put $
in the end of expression.
Use make rund
instead to run in debug mode.
Download this repository with
git clone https://github.com/nerett/rd_calculator.git
Build it with
cd rd_calculator/
make
To totally rebuild the project run
make clean
make
This section isn't done yet.
This programm was written during MIPT Ded's cource.