Help for this page

Select Code to Download


  1. or download this
    require Exporter;
    @ISA = qw(Exporter);
    ...
    sub fun2{print "\nfun2";}
    sub fun3{print "\nfun3";}
    sub fun4{print "\nfun4";}
    
  2. or download this
    use Module;
    fun1;
    fun2;
    fun3;
    fun4;
    
  3. or download this
    require Exporter;
    @ISA = qw(Exporter); 
    @EXPORT =qw\fun1 fun2\; 
    @EXPORT_OK = qw\fun3\;
    @EXPORT_FAIL= qw\fun4\;