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

11 lines
138 B
Text

class Main
{
public static Void main ()
{
Int step := 5
for (Int i := 0; i < 100; i += step)
{
echo (i)
}
}
}