Simple arithmetic calculater for command-line.
$ ./mathcalc "1+2+(10*2+(5*2))+10"
> 1+2+(10*2+(5*2))+10
------
(5*2)
= (10)
1+2+(10*2+10)+10
------
(10*2+10)
= (20+10)
= (30)
1+2+30+10
------
(1+2+30+10)
= (3+30+10)
= (3+40)
= (43)
43
$ make
$ ./mathcalc
usage: mathcalc [expression]
$ make clean