A normal arithmetic expression looks like this, right?:
3 + 5 * 3 + 14 / 7
The same expression written in Scheme looks like this:
(+ 3 (* 5 3) (/ 14 7) )
How do I call it? Is there a name for such an unusual way of writing an arithmetic expression?
The thing is, I've written a program that evaluates such Scheme'ish expressions and now I don't know how do I describe what it does. Thanks!
Edit: Rob Arthan correctly commented that it was S-expression. Someone put it as an answer so I can mark it solved!