RosettaCodeData/Task/Exponentiation-order/Icon/exponentiation-order.icon

6 lines
111 B
Text
Raw Permalink Normal View History

2025-08-11 18:05:26 -07:00
procedure main()
write("5^3^2 = ", 5^3^2 )
write("(5^3)^2 = ", (5^3)^2)
write("5^(3^2) = ", 5^(3^2))
end