Jump to content

Loops/For: Difference between revisions

Add Nu
No edit summary
imported>Brie
(Add Nu)
Line 2,763:
50 PRINT
60 NEXT</syntaxhighlight>
 
=={{header|Nu}}==
<syntaxhighlight lang="nu">
for i in 1..5 {
for j in 1..$i {
print -n "*"
}
print ""
}
</syntaxhighlight>
 
=={{header|Oberon-2}}==
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.