Help for this page

Select Code to Download


  1. or download this
    use Mod;
    
  2. or download this
    BEGIN {require Mod; import Mod }
    
  3. or download this
    use Mod qw/something/;
    
  4. or download this
    BEGIN { require Mod; import Mod qw/something/ }
    
  5. or download this
    use Mod ();
    
  6. or download this
    BEGIN { require Mod }