4 lines
152 B
Smalltalk
4 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).
|