void main() { import std.stdio : writeln; int[] arr = [1, 3, 4]; int i = 0; while (i < arr.length) { arr[i++] *= 2; } writeln(arr); // [2, 6, 8] }