Help for this page

Select Code to Download


  1. or download this
    $ hypnotoad myapp.pl
    $ prove tracking.t
    
  2. or download this
    # tracking.t
    use strict; use warnings;
    ...
    
    done_testing;
    __END__
    
  3. or download this
    # myapp.pl
    use strict; use warnings;
    ...
    Mojolicious::Commands->start_app('MyApp');
    
    __END__
    
  4. or download this
    # MyApp.pm
    package MyApp {
    ...
    };
    
    1;
    
  5. or download this
    # MyLib.pm
    use strict; use warnings;
    ...
    };
    
    1;
    
  6. or download this
    # OtherLib.pm
    use strict; use warnings;
    ...
    };
    
    1;