6 lines
77 B
Scala
6 lines
77 B
Scala
|
|
for (i <- 1 to 5) {
|
||
|
|
for (j <- 1 to i)
|
||
|
|
print("*")
|
||
|
|
println()
|
||
|
|
}
|