RosettaCodeData/Task/Long-multiplication/Smalltalk/long-multiplication-2.st

3 lines
126 B
Smalltalk
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
Transcript showCR:(2 raisedTo: 64) * (2 raisedTo: 64).
"if ** is defined as alias: " Transcript showCR:(2 ** 64) * (2 ** 64).