6 lines
91 B
Text
6 lines
91 B
Text
for (i = 0, i < 5, i++) {
|
|
for (j = 0, j <= i, j++) {
|
|
show "*"
|
|
}
|
|
showln ""
|
|
}
|