4 lines
69 B
Chapel
4 lines
69 B
Chapel
for i in 1..5 {
|
|
for 1..i do write('*');
|
|
writeln();
|
|
}
|