nicojensen.de/vendor/bundle/gems/rouge-3.3.0/lib/rouge/demos/smalltalk
Nico Jensen b59a203dbb Init
Init commit
2019-03-12 13:49:49 +01:00

6 lines
157 B
Text

quadMultiply: i1 and: i2
"This method multiplies the given numbers by each other
and the result by 4."
| mul |
mul := i1 * i2.
^mul * 4