]>
Commit | Line | Data |
---|---|---|
12f5cac9 MG |
1 | package Gruntmaster::Page::Learn; |
2 | ||
3 | use 5.014000; | |
4 | use strict; | |
5 | use warnings; | |
bb95f538 MG |
6 | use Gruntmaster::Page::Base learn => 'Learn'; |
7 | our @ISA = qw/Gruntmaster::Page::Base/; | |
12f5cac9 MG |
8 | our $VERSION = '0.001'; |
9 | ||
bb95f538 MG |
10 | use constant TEMPLATES => { |
11 | en => <<'HTML', | |
cd9af27e MG |
12 | Install interactive-perl-tutorial from your nearest CPAN mirror. Run <code>cpan App::InteractivePerlTutorial</code>. |
13 | <p>You can also get the source from <a href="http://git.ieval.ro/?p=app-interactiveperltutorial.git">git.ieval.ro</a> | |
12f5cac9 | 14 | HTML |
bb95f538 | 15 | }; |
12f5cac9 MG |
16 | |
17 | 1 |