Help for this page

Select Code to Download


  1. or download this
    package Our;
    require strict; # Must be sure it has been loaded
    ...
    This provides backwards but not forwards compatibility.  Caveat
    developer.
    
  2. or download this
    use strict;
    use Our;
    our ($foo);
    $foo = "hello\n";
    print $foo;