Tagged Questions
9
votes
4answers
593 views
What is the current status of D standard libraries?
There are two of them Phobos and Tango.
As far as I know they are redundant and incompatible.
Are there any plans to join them?
If so, when will it happen?
3
votes
1answer
82 views
Can I rely on the presence of shell()?
std.process has a nice shell() function.
import std.process;
import std.stdio;
void main()
{
string Output = shell("ls .");
writeln("The contents of this directory are:");
write(Output);
...