Help for this page

Select Code to Download


  1. or download this
    sub start {
      my ($self) = @_;
      my $start = Start->new( app => $self );
      return $start->output;
    }
    
  2. or download this
    package Start;
    
    ...
      };
      bless $self, $class;
    }
    
  3. or download this
    sub app { 
      my $self = shift;
      return $self->{app};
    }
    
  4. or download this
    sub output {
      my ($self) = @_;
    ...
      # do stuff
      return $output;
    }