Numerical Variable Not Evaluating in List
I am trying to Write() a list with a number variable i inside of it like thisWrite({i});
but it prints, literally, {i}, not {1} or {2} or whatever the variable number of i is.i is most certainly defined and assigned because goingWrite(i);
works.What am I doing wrong?