A scientific calculator in functional programming (OCaml) with some regex for parsing.

Usage:

> ./funEvalExpr "3 + 5" <8

> ./funEvalExpr "v(2*(3+1))" <2 //the result should be 2.83 but I had problems with precision display.