Help for this page

Select Code to Download


  1. or download this
    use Foo::Bar quux => ${'VERSION'};
    use strict;
    
  2. or download this
    package Example;
    use Exporter::Tidy _map => { foo => \$foo };
    ...
    my $foo;
    
    # silently making $Example::foo exportable
    
  3. or download this
    package Example;
    use strict;
    ...
    my $foo;
    
    # Global symbol "$foo" requires explicit package name ...