How do you create an array of pointers in D? I tried something like``` double* []y; ```
I'd write it double*[] y; but yeah that's it.
Error: only one index allowed to index double[]
That must be at the usage point where you prolly just need parens or something.