Loops/For with a specified step: Difference between revisions

added Fantom example
m (→‎Icon and Unicon: header simplification)
(added Fantom example)
Line 186:
=={{header|FALSE}}==
<lang false>2[$9\>][$.", "2+]#"who do we appreciate!"</lang>
 
=={{header|Fantom}}==
 
<lang fantom>
class Main
{
public static Void main ()
{
Int step := 5
for (Int i := 0; i < 100; i += step)
{
echo (i)
}
}
}
</lang>
 
=={{header|Forth}}==
342

edits