line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Psychic::Ninja; |
2
|
1
|
|
|
1
|
|
1024
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
35
|
|
3
|
1
|
|
|
1
|
|
13
|
use v5.14; |
|
1
|
|
|
|
|
94
|
|
|
1
|
|
|
|
|
38
|
|
4
|
|
|
|
|
|
|
|
5
|
1
|
|
|
1
|
|
15
|
use warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
35
|
|
6
|
|
|
|
|
|
|
|
7
|
1
|
|
|
1
|
|
3399
|
use subs qw(); |
|
1
|
|
|
|
|
30
|
|
|
1
|
|
|
|
|
28
|
|
8
|
1
|
|
|
1
|
|
6
|
use vars qw($VERSION); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
54
|
|
9
|
|
|
|
|
|
|
|
10
|
1
|
|
|
1
|
|
6
|
use Carp; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
143
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
$VERSION = '0.10_02'; |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=encoding utf8 |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 NAME |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
Psychic::Ninja - GitHub made me make this |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 SYNOPSIS |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
use Psychic::Ninja; |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
# don't call any methods |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 DESCRIPTION |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
You don't call methods in Psychic::Ninja! It figures out what you |
29
|
|
|
|
|
|
|
want and does it while you aren't looking. It's like it was never |
30
|
|
|
|
|
|
|
there! |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=cut |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
sub AUTOLOAD { |
35
|
0
|
|
|
0
|
|
|
croak <<"HERE"; |
36
|
|
|
|
|
|
|
You don't call methods in Psychic::Ninja! It figures out what you |
37
|
|
|
|
|
|
|
want and does it while you aren't looking. It's like it was never |
38
|
|
|
|
|
|
|
there! |
39
|
|
|
|
|
|
|
HERE |
40
|
|
|
|
|
|
|
} |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 TO DO |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
There's nothing to do because Psychic::Ninja has done it already! |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head1 SEE ALSO |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head1 SOURCE AVAILABILITY |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
This source is in Github: |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
http://github.com/briandfoy/psychic-ninja/ |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head1 AUTHOR |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
brian d foy, C<< >> |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
Copyright (c) 2013, brian d foy, All Rights Reserved. |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
You may redistribute this under the same terms as Perl itself. |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
=cut |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
1; |