line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Acme::MetaSyntactic::beatles; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
94335
|
use strict; |
|
1
|
|
|
|
|
5
|
|
|
1
|
|
|
|
|
48
|
|
4
|
1
|
|
|
1
|
|
12
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
56
|
|
5
|
1
|
|
|
1
|
|
5
|
no warnings 'syntax'; |
|
1
|
|
|
|
|
5
|
|
|
1
|
|
|
|
|
46
|
|
6
|
|
|
|
|
|
|
|
7
|
1
|
|
|
1
|
|
917
|
use Acme::MetaSyntactic::MultiList; |
|
1
|
|
|
|
|
1669
|
|
|
1
|
|
|
|
|
72
|
|
8
|
|
|
|
|
|
|
our @ISA = qw [Acme::MetaSyntactic::MultiList]; |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
our $VERSION = '2012051701'; |
11
|
|
|
|
|
|
|
__PACKAGE__ -> init(); |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
1; |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 NAME |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Acme::MetaSyntactic::beatles - Singers from the 1960s British rock & roll group. |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 DESCRIPTION |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
The Beatles were to music what LISP was the programming languages. |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
This module contains four (sub)themes related to their names: |
24
|
|
|
|
|
|
|
C<< first/standard >>, containing |
25
|
|
|
|
|
|
|
the four first names (John, Paul, George, Ringo) of what we typically |
26
|
|
|
|
|
|
|
consider to be the four Beatles. C<< full/standard >> contain the full |
27
|
|
|
|
|
|
|
names of the fab four: John Lennon, Paul McCartney, George Harrison, and |
28
|
|
|
|
|
|
|
Ringo Starr. However, in the early years of the band, the drummer was |
29
|
|
|
|
|
|
|
Pete Best. Hence the additional themes C<< first/early >> and C<< full/early >>, |
30
|
|
|
|
|
|
|
which swaps Ringo Starr for Pete Best. The default theme is |
31
|
|
|
|
|
|
|
C<< first/standard >>. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
A fifth theme is C<< albums >>, containing the names of the 12 albums that |
34
|
|
|
|
|
|
|
are considered the "core" albums of The Beatles. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
This module is part of the set of C<< Acme::MetaSyntactic >> themes |
37
|
|
|
|
|
|
|
found in the C<< Acme::MetaSyntactic::Themes::Abigail >> package. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 SEE ALSO |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
L, L. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head1 AUTHOR |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
Abigail, L<< mailto:cpan@abigail.be >>. |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head1 COPYRIGHT and LICENSE |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
Copyright (C) 2012 by Abigail. |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
52
|
|
|
|
|
|
|
copy of this software and associated documentation files (the "Software"), |
53
|
|
|
|
|
|
|
to deal in the Software without restriction, including without limitation |
54
|
|
|
|
|
|
|
the rights to use, copy, modify, merge, publish, distribute, sublicense, |
55
|
|
|
|
|
|
|
and/or sell copies of the Software, and to permit persons to whom the |
56
|
|
|
|
|
|
|
Software is furnished to do so, subject to the following conditions: |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included |
59
|
|
|
|
|
|
|
in all copies or substantial portions of the Software. |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
62
|
|
|
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
63
|
|
|
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
64
|
|
|
|
|
|
|
THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, |
65
|
|
|
|
|
|
|
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT |
66
|
|
|
|
|
|
|
OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
67
|
|
|
|
|
|
|
THE SOFTWARE. |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
=cut |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
__DATA__ |