#use "iROBOsim.ic" #use "mylib.ic" void main(){ int junk[3]; int index = 0; junk[0] = 21; junk[1] = 38; junk[2] = 8; while(index < _array_size(junk)){ printf("junk[%d]: %d\n", index, junk[index]); index = index + 1; } }