// test.txt

ax[10], gv;

inc(x){ return x+1; }

test(){
  a = 1;
  ax[2] = 22;
  b = ax[inc(a)];
  print(b);
}

main(){
  test();
}

