Help for this page

Select Code to Download


  1. or download this
    sub examplRM{
    my $self = shift;
    ...
    my $output = 'example'
    $template->param( outputVar => $output);
    return $template->output;
    
  2. or download this
    sub exampleNav{
    my $self = shift;
    my @nav = qw(Nav1, Nav2, Nav3);
    return \@nav;
    }