Help for this page

Select Code to Download


  1. or download this
    use strict;
    use MyPack;
    my $myString = $MyPack::a;
    print $myString;
    
  2. or download this
    package MyPack;
    require Exporter;
    $a = "Read from Mypack"
    
  3. or download this
    package MyPack;
    our $a = "Read from Mypack"