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

3 lines
152 B
Smalltalk

Transcript show:'5**3**2 => '; showCR: 5**3**2.
Transcript show:'(5**3)**2 => '; showCR: (5**3)**2.
Transcript show:'5**(3**2) => '; showCR: 5**(3**2).