line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package App::Math::Tutor::Cmd::Roman; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
12191
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
36
|
|
4
|
1
|
|
|
1
|
|
4
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
50
|
|
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.005'; |
13
|
|
|
|
|
|
|
|
14
|
1
|
|
|
1
|
|
4
|
use Moo; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
8
|
|
15
|
1
|
|
|
1
|
|
267
|
use MooX::Cmd; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
8
|
|
16
|
1
|
|
|
1
|
|
1545
|
use MooX::Options; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
7
|
|
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; |