RosettaCodeData/Task/Loops-Foreach/Bc/loops-foreach.bc

7 lines
72 B
Plaintext

a[0] = .123
a[1] = 234
a[3] = 95.6
for (i = 0; i < 4; i++) {
a[i]
}