Sorry guys that I didn't express myself well. I also mixed some stuff up. What I wanted to ask is this, in c++ this is valid

        int x = 3;
        int y = 10;
        int arr [x][y];

x,y are known at the compile time and arr is a static array. I can't do that in D so what is the best way to declare an array of that size?

Reply via email to