Tagged Questions
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);
...