On Thursday, 23 September 2021 at 14:00:30 UTC, eugene wrote:

For the moment I am personally quite happy

```d
void main(string[] args) {

    import core.memory : GC;

    auto Main = new Main();
    GC.addRoot(cast(void*)Main);
    Main.run();

    auto stopper = new Stopper();
    GC.addRoot(cast(void*)stopper);
    stopper.run();
```

Fine, works!

Reply via email to