Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 217 Bytes

README.md

File metadata and controls

13 lines (7 loc) · 217 Bytes

Reverse Polish Notation (RPN) Calculator

rpncalc1

Implemented by hand without State Monad or Parser.

rpncalc2

Implemented with stack using State Monad.

rpncalc3

Implemented with Attoparsec Parser.