View paradag01.d
// Code taken from the following SO thread: | |
// http://stackoverflow.com/questions/19528562/need-help-parallel-traversing-a-dag-in-d | |
import std.stdio; | |
import std.conv; | |
import std.parallelism; | |
class Node { | |
string name; | |
Node[] clients; |