On 7/22/22 3:22 PM, Azi Hassan wrote:

Oh, interesting syntax. I was thinking something along the lines of

```D
template printEnum(...) {
     version(debug) {
         ... // everything we already did
     } else {
         enum printEnum(alias x) = x;
     }
}
```

But I like yours better.

`version(debug)` isn't valid syntax, `debug` is a keyword.

-Steve

Reply via email to