Behaves different on my osx and linux machines

Kagamin spam at here.lot
Fri Dec 22 15:02:42 UTC 2023


Add more debugging?
```
      bool done = false;
      while (!done) {
          writeln(1);
          auto result = ["echo", "Hello World"].execute;
          if (result.status != 0)
          {
              writeln(2);
              throw new Exception("echo failed");
          }
          writeln(result.output);
          receiveTimeout(dur!"msecs"(-1),
            (LinkTerminated t) {
                writeln("Done");
                done = true;
            },
          );
          writeln(3);
      }
      writeln("ByeBye");
```


More information about the Digitalmars-d-learn mailing list