https://issues.dlang.org/show_bug.cgi?id=15050
Issue ID: 15050
Summary: DPaste is always passing an empty second argument to
programs
Product: D
Version: D2
Hardware: All
URL: http://dpaste.dzfl.pl/32757e6f96b0
OS: All
Status: NEW
Severity: normal
Priority: P1
Component: dlang.org
Assignee: [email protected]
Reporter: [email protected]
import std.stdio;
void main(string[] args)
{
writeln(args);
}
This will print e.g.:
["./f342", ""]
This is blocking e.g. the float-rounding example on dlang.org.
--