https://issues.dlang.org/show_bug.cgi?id=21136

--- Comment #3 from KytoDragon <[email protected]> ---
You can have them be zero initialized by assigning zero to the array:

double[1000000] = 0;

Do note that this only decreases the size of the executable. Once the program
is loaded into memory these array will obviously be expanded to their full
size.

--

Reply via email to