Help for this page

Select Code to Download


  1. or download this
    # file foo
    our $foo = 'hello world!';
    
  2. or download this
    #!/usr/bin/perl
    use strict;
    ...
    no $foo
    $foo defined
    hello world!
    
  3. or download this
    #!/usr/bin/perl
    use strict;
    ...
    print "no \$foo" unless defined $main::{foo};
    require 'foo'; # or do 'foo'
    print $main::foo;