Help for this page

Select Code to Download


  1. or download this
    use strict;
    use Data::DumpXML qw(dump_xml);
    ...
          hash   => { bar => { baz => 'qux'}},
       }, shift;
    }
    
  2. or download this
    package main;
    my $no = Bar->new();
    ...
    package Bar;
    sub new { bless {},shift }
    sub do  { print "cool\n" }