Loops/For with a specified step: Difference between revisions

Content added Content deleted
(Added a Slate implementation.)
(Add new section for Lisaac)
Line 156: Line 156:
}
}
System.out.println("who do we appreciate?");</lang>
System.out.println("who do we appreciate?");</lang>

=={{header|Lisaac}}==
<lang Lisaac>
1.to 9 by 2 do { i : INTEGER;
i.print;
'\n'.print;
};
</lang>


=={{header|Logo}}==
=={{header|Logo}}==