Help for this page

Select Code to Download


  1. or download this
    package First;
    my $x;
    package Other:
    print $x;  # still the same $x
    
  2. or download this
    package First;
    our $x;
    package Other:
    print $x;  # still the same $x