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

2 lines
80 B
Text

see "(5^3)^2 =>" + pow(pow(5,3),2) + nl
see "5^(3^2) =>" + pow(5,pow(3,2)) + nl