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