Help for this page

Select Code to Download


  1. or download this
    #Foo/Foo.pm did not return a true value
    File 'executable/perl/file'; Line 1
    ...
    File 'executable/perl/file'; Line 1
    ... propagated
    File 'executable/perl/file'; Line 2
    
  2. or download this
    use Foo::Foo qw(declare_text);
    use File::WalkTree;
    ...
    # ... do some stuff
    exit;
    __END__
    
  3. or download this
    package Foo:Foo;
    use strict;
    ...
    #... more stuff
    1;
    __END__