Help for this page

Select Code to Download


  1. or download this
    package foo;
    my $foo = 5;
    ...
      $foo = 6;
      $foo::bar = 8;
    }
    
  2. or download this
    use foo;
    
    ...
    
    print $foo::foo,"\n";
    print $foo::bar,"\n";
    
  3. or download this
    Use of uninitialized value in print at test.pl line 6.
    Use of uninitialized value in print at test.pl line 7.
    Use of uninitialized value in print at test.pl line 13.
    8