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

7 lines
202 B
Text

print "(5^3)^2 = "; (5^3)^2
print "5^(3^2) = "; 5^(3^2)
print
print "fn pow( fn pow(5,3), 2 ) = "; fn pow( fn pow(5,3), 2 )
print "fn pow( 5, fn pow(3,2 ) ) = "; fn pow( 5, fn pow(3,2 ) )
HandleEvents