line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package App::Math::Tutor::Cmd::Roman; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
19879
|
use warnings; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
45
|
|
4
|
1
|
|
|
1
|
|
5
|
use strict; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
67
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
=head1 NAME |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
App::Math::Tutor::Cmd::Natural - namespace for exercises for roman numbers |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=cut |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
our $VERSION = '0.004'; |
13
|
|
|
|
|
|
|
|
14
|
1
|
|
|
1
|
|
6
|
use Moo; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
11
|
|
15
|
1
|
|
|
1
|
|
468
|
use MooX::Cmd; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
13
|
|
16
|
1
|
|
|
1
|
|
2035
|
use MooX::Options; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
8
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
sub execute |
19
|
|
|
|
|
|
|
{ |
20
|
0
|
|
|
0
|
0
|
|
shift->options_usage(); |
21
|
|
|
|
|
|
|
} |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 LICENSE AND COPYRIGHT |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
Copyright 2010-2014 Jens Rehsack. |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it |
28
|
|
|
|
|
|
|
under the terms of either: the GNU General Public License as published |
29
|
|
|
|
|
|
|
by the Free Software Foundation; or the Artistic License. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
See http://dev.perl.org/licenses/ for more information. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=cut |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
1; |