in reply to drawing (visualizing) directed graphs
From the docs:
There is a tutorial,and samples, at the author's website.use Graph::Easy; my $graph = Graph::Easy->new(); $graph->add_edge_once ('Bonn', 'Berlin'); print $graph->as_ascii( ); # prints: # +------+ +--------+ # | Bonn | --> | Berlin | # +------+ +--------+
"For every complex problem, there is a simple answer ... and it is wrong." --H.L. Mencken
|
|---|