12-24-2012, 09:37 AM
Some time ago I stumbled upon an
appealing tutorial: Learn You a Haskell.
Now there's a Erlang version of his book with the same example of a Reverse Polish Notation Calculator.
Cheers
Thomas
Reverse Polish Notation Calculator
|
|
« Next Oldest | Next Newest »
|
▼
12-24-2012, 09:37 AM
Some time ago I stumbled upon an Now there's a Erlang version of his book with the same example of a Reverse Polish Notation Calculator.
Cheers ▼
12-24-2012, 12:18 PM
Interesting. I did think about using Haskell as an implementation language for a calculator -- lazy evaluation provides one easy path to guarantee correctly rounded results. The critical downside was unlimited memory requirements which is terminal in a small footprint device.
|