Is there a way to evaluate long expressions in CLIPS rule based programming language. I know how to evaluate single/simple expressions such as +, -, *, /, etc.
(+ 3 5)=>(3+5)=8
Is there an easy way to evaluate an expression like 10+4*19-35/12
in CLIPS without evaluating each part of the expression separately.