Help for this page

Select Code to Download


  1. or download this
    
    use strict;
    use warnings;
    
    A::func();
    
  2. or download this
    use Exporter;
    @EXPORT = qw ($guimodule);
    ...
    }
    1;
    
  3. or download this
    sub new 
    { ....
    ...
    
    }
    1;
    
  4. or download this
    my $s = Server->new();
    $s->initServer();
    
  5. or download this
    use A; 
    sub new 
    ...
    }
    1;