Talk:Parsing/RPN to infix conversion

From Rosetta Code
Revision as of 20:19, 3 December 2011 by rosettacode>Paddy3118 (→‎Other examples)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Other examples

The Ruby Quiz article mentions the following two additional examples:

    $ ruby postfix_to_infix.rb '56 34 213.7 + * 678 -'
    56 * (34 + 213.7) - 678
    $ ruby postfix_to_infix.rb '1 56 35 + 16 9 - / +'
    1 + (56 + 35) / (16 - 9)

--Paddy3118 20:19, 3 December 2011 (UTC)