On 9/23/12, Peter Sommerfeld <[email protected]> wrote: > What is wrong here?
string[] cmd;
cmd ~= "dmd";
cmd ~= "src/xyz.d";
int i = execvp("dmd",cmd);
1st arg should always be the app name, even though apps typically
ignore/skip the first arg.
