Graph::Easyã¯ASCII, HTML, SVG *1ã§ã®åºåãå¯è½ãªã°ã©ãã«å¤æãæç»ãã¦ãããã¢ã¸ã¥ã¼ã«ã§ãã ASCIIã§ã®åºå +------+ +-------+ | AAA | --> | BBB | +------+ +-------+ +------+ +-------+ | test | --> | test2 | +------+ +-------+ #!/usr/bin/perl use strict; use warnings; use utf8; use Graph::Easy; my $graph = Graph::Easy->new(); $graph->add_edge_once ('AAA', 'BBB'); $graph->add_edge_once ('test', 'test2'); print $graph->as_ascii(); ã³ãã³

{{#tags}}- {{label}}
{{/tags}}