4 lines
74 B
Text
4 lines
74 B
Text
for( i = 1 : 5 ){
|
|
for( j = 1 : i ) io.write( '*' )
|
|
io.writeln()
|
|
}
|