Memory safe in D

Sergey kornburn at yandex.ru
Mon Mar 11 08:49:35 UTC 2024


On Monday, 11 March 2024 at 08:16:13 UTC, Alex wrote:
> Hello,
> int main()
> {
> 	A a;
> 	a.run();
> 	writeln("Hello, world!");
> 	return 0;
> }
> ```

You need
```
A a = new A();
```




More information about the Digitalmars-d mailing list