Your IP : 216.73.216.74


Current Path : /proc/thread-self/root/proc/self/root/usr/share/doc/perl-GraphViz/examples/
Upload File :
Current File : //proc/thread-self/root/proc/self/root/usr/share/doc/perl-GraphViz/examples/yacc.pl

#!/usr/bin/perl -w
#
# This program shows the usage of GraphViz::Parse::Yacc
# to graph the Perl grammar

use strict;
use lib '../lib';
use GraphViz::Parse::Yacc;

my $g = GraphViz::Parse::Yacc->new('perly.output');
#print $g->as_text();
$g->as_png("yacc.png");