Prelude> price 4+8
22.0
Prelude>


Explanation: the expression is interpreted as
(price 4)+8
So, first price 4 is calculated which is 14, and then 8 is added, so the result is 22.