Loops/For: Difference between revisions

163 bytes added ,  10 months ago
C3 added
(Added Chipmunk Basic, MSX Basic, QBasic and Quite BASIC)
(C3 added)
Line 967:
 
std::cout.put('\n');
}</syntaxhighlight>
 
=={{header|C3}}==
<syntaxhighlight lang="c3">
for (int i = 0; i < 5; i++)
{
for (int j = 1; j <= i; j++) io::print("*");
io::printn("*");
}</syntaxhighlight>
 
38

edits