RosettaCodeData/Task/Parsing-RPN-calculator-algorithm/Forth/parsing-rpn-calculator-algorithm-2.fth

12 lines
199 B
Forth
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
: ^ over swap 1 ?do over * loop nip ;
: detail
begin
cr ." stack: " .s
bl word count dup
0<> while
." , read: " 2dup type evaluate
repeat
2drop
;
detail 3 4 2 * 1 5 - 2 3 ^ ^ / +