4 lines
77 B
Text
4 lines
77 B
Text
for (i in 1..5) {
|
|
for (j in 1..i) System.write("*")
|
|
System.print()
|
|
}
|