RosettaCodeData/Task/Exponentiation-order/Ring/exponentiation-order.ring

3 lines
80 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
see "(5^3)^2 =>" + pow(pow(5,3),2) + nl
see "5^(3^2) =>" + pow(5,pow(3,2)) + nl