Hi all,

How do you create an array of pointers in D? I tried something like

```
double* []y;
```

Or

```
(double*) []y;
```

But I get the error:

```
Error: only one index allowed to index double[]
```

Thanks in advance.

Reply via email to