Devel-Graph
===========

This module will turn Perl code like the following:

	my $a = shift;
	my $b = 1;
	if ($a < 9)
	  {
	  $b = $a + 1;
	  }
	return $b + 2;

into a Graph::Easy object, which lets you then generate output like
the following:


INSTALLATION
============

To install this module type the following:

   perl Makefile.PL
   make
   make test
   make install

COPYRIGHT AND LICENCE

Copyright (C) 2004-2005 by Tels C<http://bloodgate.com>

See the LICENSE file for more information.

