RosettaCodeData/Task/Loops-For/Nu/loops-for.nu

7 lines
64 B
Plaintext

for i in 1..5 {
for j in 1..$i {
print -n "*"
}
print ""
}