Help for this page

Select Code to Download


  1. or download this
    package IsaCGI;
    use strict;
    ...
    sub my_method{
       return "hello from isa_cgi\n";
    }
    
  2. or download this
    sub new {
      my($class,$initializer) = @_;
      my $self = {};
      bless $self,ref $class || $class || $DefaultClass;
      ...
    
  3. or download this
    my $q = new IsaCGI;