6 lines
79 B
Text
6 lines
79 B
Text
for (i in 1...6) {
|
|
for(j in 0...i) {
|
|
Sys.print('*');
|
|
}
|
|
Sys.println('');
|
|
}
|