RosettaCodeData/Task/Parsing-RPN-calculator-algorithm/PL-SQL/parsing-rpn-calculator-algorithm-2.sql

5 lines
101 B
MySQL
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
begin
dbms_output.put_line(chr(10) || 'Result: ' || rpn_calc('3 4 2 * 1 5 - 2 3 ^ ^ / +'));
end;
/