Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > 1260d7b12d3dce6ac9f6db19f9a9904c > files > 30

perl-GraphViz-2.04-6.fc15.noarch.rpm

#!/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");