/python-stack-langauge-example

a very simple stack language calculator example in python to showcase some features

Primary LanguagePython

Example usage:

$ python .\main.py "DEO 3 * 4 * 5 / 10 - 5"
12.0

# is the same as
$ python .\main.py "DEO (3 * (4 * (5 / (10 - 5))))"