6 lines
85 B
Text
6 lines
85 B
Text
for width in 1..5 {
|
|
for _ in 1..width {
|
|
print("*")
|
|
}
|
|
println()
|
|
}
|