Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    $MyPackage::variable = 1;
    
    my $another_variable = 2;
    
  2. or download this
    use MyPackage;
    
    ...
    use warnings;
    
    our $variable = 1;