RosettaCodeData/Task/Loops-For-with-a-specified-step/Smalltalk/loops-for-with-a-specified-step.st
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

4 lines
115 B
Smalltalk

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