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