Am Sat, 05 Mar 2016 14:18:31 +0000 schrieb Atila Neves <[email protected]>:
> void main() {
> stdout = File("/dev/null", "w");
> foreach(t; 1000.iota.parallel) {
> writeln("Oops");
> }
> }
First thing I tried:
void main() {
stdout = File("/dev/null", "w");
foreach(t; 1000.iota.parallel) {
stdout.writeln("Oops");
}
}
That does NOT segfault ... hmm.
--
Marco
