Parse and evaluate expressions in prefix-form (basically Polish notation).
Motivation
I made this as an example solution to a problem a new programmer had to solve: given an arithmetic expression in prefix form, evaluate that expression.
Prefix form
See Tests/TestExpression.fs for fully explanatory examples.
Description
Parse and evaluate expressions in prefix-form (basically Polish notation)