-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | a minimal, extensible and precise calculator -- -- Hascal is a minimal calculator with infix-operations supporting -- addition, subtraction, division, multiplication and exponentiation. -- Brackets are not supported yet. Futhermore, it's easy to add custom -- operators. @package hascal @version 1 module Hascal operators :: [(Char, CReal -> CReal -> CReal)] eval :: [(Char, CReal -> CReal -> CReal)] -> String -> CReal hascal :: String -> CReal