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

11 lines
225 B
Text

// Exponentiation order example:
@SAY "5**3**2 = " ( 5**3**2 );
@SAY "(5**3)**2 = " ( (5**3)**2 );
@SAY "5**(3**2) = " ( 5**(3**2) );
/] Output:
5**3**2 = 1953125
(5**3)**2 = 15625
5**(3**2) = 1953125