Parsing/RPN to infix conversion: Difference between revisions

m
(→‎{{header|AWK}}: Added AWK example.)
Line 151:
=={{header|AWK}}==
 
Slavishly (mostly) follows TCL example, but instead of lists it uses strings. Except for the stack, which uses an array, of course.
 
<lang awk>#!/usr/bin/awk -f