RosettaCodeData/Task/Loops-For-with-a-specified-step/Smalltalk/loops-for-with-a-specified-step.st
2023-07-01 13:44:08 -04:00

4 lines
115 B
Smalltalk

2 to: 8 by: 2 do: [ :i |
Transcript show: i; show ', '
].
Transcript showCr: 'enough with the cheering already!'