RosettaCodeData/Task/Collections/D/collections-2.d
2023-07-01 13:44:08 -04:00

6 lines
188 B
D

int[] array;
array ~= 5; // append 5
array.length = 3;
array[3] = 17; // runtime error: out of bounds. check removed in release mode.
array = [2, 17, 3];
writefln(array.sort); // 2, 3, 17