Help for this page

Select Code to Download


  1. or download this
    use vars qw($foo);
    {
    ...
    }
    $foo = 'bar';
    xyzzy(); # Prints bar now.
    
  2. or download this
    {
        my $foo = 'foo';
    ...
    }
    my $foo = 'bar';
    xyzzy(); # Prints the 'foo' that stayed shared.