Help for this page

Select Code to Download


  1. or download this
        sub index :Path :Args(0) {
            my ( $self, $c ) = @_;
    ...
            # Hello World
            $c->response->body( $c->welcome_message );
        }
    
  2. or download this
    package MyApp::Controller::Root;
    
    ...
            my ($self, $c) = @_;
            $C = $c;
    }