foreach (i; 0..5) {
  immutable int j = i;
  etc.
}
I want each j to be assigned separate memory so that it can be passed to a calle function and not overwritten by next value of i in foreach()??


Reply via email to