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