Help for this page

Select Code to Download


  1. or download this
    use Foo;
    printf "Value is: %d\n",SOME;
    
  2. or download this
    use Foo qw(bar);
    printf "Value is: %d\n",SOME;
    
  3. or download this
    package Foo;
    use strict;
    ...
    }
    
    1;