RosettaCodeData/Task/Loops-For/Haxe/loops-for.haxe

7 lines
79 B
Plaintext

for (i in 1...6) {
for(j in 0...i) {
Sys.print('*');
}
Sys.println('');
}