Changeset 17520 for ext

Show
Ignore:
Timestamp:
08/30/07 17:58:08 (17 months ago)
Author:
bloonix
Message:

add pod to Dumper.pm

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • ext/Dumper/lib/Dumper.pm

    r17519 r17520  
     1=begin pod 
     2 
     3=head1 NAME 
     4 
     5Dumper - Simple dumper for Perl 6 structures. 
     6 
     7=head1 SYNOPSIS 
     8 
     9    use Dumper; 
     10 
     11    my %struct = ( 
     12        foo => 1, 
     13        bar => 'baz', 
     14    ); 
     15 
     16    dump(\%struct); 
     17 
     18=head1 DESCRIPTION 
     19 
     20This is just a simple dumper for Perl 6 structures. 
     21Feel free to expand it for your usage. 
     22 
     23=head1 SUBROUTINES 
     24 
     25=head2 dump() 
     26 
     27Call C<dump()> to dump a perl structure. 
     28 
     29=head1 EXPORTS 
     30 
     31Subroutine dump() is exportet. 
     32 
     33=head1 BUGS 
     34 
     35Please report all bugs to <jschulz.cpan(at)bloonix.de>. 
     36 
     37=head1 AUTHOR 
     38 
     39Perl 6 developers. 
     40 
     41=head1 COPYRIGHT 
     42 
     43This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. 
     44 
     45=end pod 
     46 
    147module Dumper-0001; 
    248use v6-alpha;