Hello.

I'm trying to invoke a command inside d, and it returns a success code when the command in question segfaults.

any ideas?

// the caller
import std.process;

int main(){
    auto r = system("./test");
    return(r);
}


//test.d
import std.stdio;

void main()
{
    Object o;
    writeln(o.toString());
}

Reply via email to