RosettaCodeData/Task/Loops-For/E/loops-for.e

7 lines
85 B
Plaintext

for width in 1..5 {
for _ in 1..width {
print("*")
}
println()
}