RosettaCodeData/Task/Exponentiation-order/ALGOL-68/exponentiation-order.alg
2023-07-01 13:44:08 -04:00

3 lines
141 B
Text

print( ( "5**3**2: ", 5**3**2, newline ) );
print( ( "(5**3)**2: ", (5**3)**2, newline ) );
print( ( "5**(3**2): ", 5**(3**2), newline ) )