RosettaCodeData/Task/Long-multiplication/Smalltalk/long-multiplication-2.st
2023-07-01 13:44:08 -04:00

2 lines
126 B
Smalltalk

Transcript showCR:(2 raisedTo: 64) * (2 raisedTo: 64).
"if ** is defined as alias: " Transcript showCR:(2 ** 64) * (2 ** 64).