Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    
    my $g = Guff->new( $data );
    print Dumper $g ;
    
  2. or download this
    package Guff;
    use Carp;
    ...
    }
    
    1;
    
  3. or download this
    package Guff::Child1;
    use Guff;
    ...
    our $child = undef;
    
    1;