4 lines
71 B
Text
4 lines
71 B
Text
foreach i in ([1..5]){
|
|
foreach j in (i){print("*")}
|
|
println();
|
|
}
|