What features of D you would not miss?
Ogi
ogion.art at gmail.com
Tue Sep 20 07:13:45 UTC 2022
On Saturday, 17 September 2022 at 20:08:26 UTC, Dennis wrote:
> On Saturday, 17 September 2022 at 07:37:24 UTC, Ogi wrote:
>> Non-ASCII characters in identifiers. There is no good reason
>> to use this “feature”, unless your goal is bug-ridden and
>> unmaintainable code.
>
> I don't use non-ASCII identifiers, but you'll have to explain
> how e.g. using `π` instead of `pi` results in bugs or
> maintenance burden.
```D
int μ = 42;
void main() {
int µ = 69;
assert(μ == 69);
}
```
More information about the Digitalmars-d
mailing list