root/lang/perl/NanoA/trunk/app/example/start.pm

Revision 24103, 164 bytes (checked in by kazuho, 22 months ago)

do not use import (since it requires use, which requires the .pm file to exists)

Line 
1package example::start;
2
3use base qw/NanoA/;
4
5use strict;
6use warnings;
7use utf8;
8
9sub run {
10    my $app = shift;
11    $app->render('example/template/start');
12}
13
141;
Note: See TracBrowser for help on using the browser.