Help for this page

Select Code to Download


  1. or download this
    use strict;
    use Foo::Bar;
    ...
    for my $sym ( keys %{ $::{ "${package}::" } } ) {
      print "$sym\n";
    }
    
  2. or download this
    use strict;
    use Foo::Bar;
    ...
    __END__
    PI
    import
    
  3. or download this
    package Foo::Bar;
    $PI = 3.14;
    __END__