Help for this page

Select Code to Download


  1. or download this
    package A;
    use strict;
    ...
    }
    use vars @EXPORT;
    $var1 = "1";
    
  2. or download this
    #!/usr/bin/perl
    package B;
    use strict;
    use A;
    print "$var1\n";
    
  3. or download this
    package A;
    ...
    
  4. or download this
    ...
    use A1;
    ...