Help for this page

Select Code to Download


  1. or download this
    package testlib;
    our $var = "Lord only knows if this will work...";
    1;
    
  2. or download this
    # testlib.pm
    package testlib;
    ...
    
    our $var = "Lord only knows if this will work...";
    1;
    
  3. or download this
    #!/usr/bin/perl -w
    # test.pl
    ...
    print $var;
    
    exit;