6 lines
64 B
Text
6 lines
64 B
Text
for i in 1..5 {
|
|
for j in 1..$i {
|
|
print -n "*"
|
|
}
|
|
print ""
|
|
}
|