RosettaCodeData/Task/Exponentiation-order/Langur/exponentiation-order.langur
2023-07-01 13:44:08 -04:00

3 lines
85 B
Text

writeln " 5^3^2: ", 5^3^2
writeln "(5^3)^2: ", (5^3)^2
writeln "5^(3^2): ", 5^(3^2)