Arithmetic evaluation: Difference between revisions

m
added whitespace before the TOC (table of contents).
(Add implementation in Standard ML)
m (added whitespace before the TOC (table of contents).)
Line 8:
* The four symbols + - * / must be supported as binary operators with conventional precedence rules.
* Precedence-control parentheses must also be supported.
<br>
 
;Note:
Line 14 ⟶ 15:
* Multiplication/Division (left to right)
* Addition/Subtraction (left to right)
<br>
 
 
;C.f:
Line 20 ⟶ 21:
* [[Parsing/RPN calculator algorithm]].
* [[Parsing/RPN to infix conversion]].
<br><br>
 
=={{header|Ada}}==