RosettaCodeData/Task/Loops-For/Bc/loops-for.bc

7 lines
69 B
Plaintext

for (i = 1; i <= 5; i++) {
for (j = 1; j <= i; j++) "*"
"
"
}
quit