Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-release > by-pkgid > d2e2664df18d2471e3adc441ef32b114 > files > 33

perl-GraphViz-2.240.0-3.mga7.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");