line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Acme::MetaSyntactic::playing_cards; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
90730
|
use strict; |
|
1
|
|
|
|
|
5
|
|
|
1
|
|
|
|
|
49
|
|
4
|
1
|
|
|
1
|
|
6
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
57
|
|
5
|
1
|
|
|
1
|
|
5
|
no warnings 'syntax'; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
46
|
|
6
|
|
|
|
|
|
|
|
7
|
1
|
|
|
1
|
|
5
|
use Acme::MetaSyntactic::List; |
|
1
|
|
|
|
|
5
|
|
|
1
|
|
|
|
|
96
|
|
8
|
|
|
|
|
|
|
our @ISA = qw [Acme::MetaSyntactic::List]; |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
our $VERSION = '2013072601'; |
11
|
|
|
|
|
|
|
__PACKAGE__ -> init; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
1; |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 NAME |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Acme::MetaSyntactic::playing_cards - Standard 52 deck |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 DESCRIPTION |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
This C<< Acme::MetaSyntactic >> theme names the cards of a standard |
22
|
|
|
|
|
|
|
deck of 52 playing cards, with suits I<< Clubs >>, I<< Diamonds >>, |
23
|
|
|
|
|
|
|
I<< Hearts >>, and I<< Spades >>. Card ranks are I<< Ace >>, I<< Two >>, |
24
|
|
|
|
|
|
|
I<< Three >>, I<< Four >>, I<< Five >>, I<< Six >>, I<< Seven >>, I<< Eight >>, |
25
|
|
|
|
|
|
|
I<< Nine >>, I<< Ten >>, I<< Jack >>, I<< Queen >>, and I<< King >>. |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
Alternative names like I<< Deuce >> for I<< Two >>, or I<< Knave >> instead |
28
|
|
|
|
|
|
|
of I<< Jack >>, are not supported. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
This module is part of the set of C<< Acme::MetaSyntactic >> themes |
31
|
|
|
|
|
|
|
found in the C<< Acme::MetaSyntactic::Themes::Abigail >> package. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head1 SEE ALSO |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
L, L<< Acme::MetaSyntactic::List >> |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 AUTHOR |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
Abigail, L<< mailto:cpan@abigail.be >>. |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head1 COPYRIGHT and LICENSE |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
Copyright (C) 2013 by Abigail. |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
46
|
|
|
|
|
|
|
copy of this software and associated documentation files (the "Software"), |
47
|
|
|
|
|
|
|
to deal in the Software without restriction, including without limitation |
48
|
|
|
|
|
|
|
the rights to use, copy, modify, merge, publish, distribute, sublicense, |
49
|
|
|
|
|
|
|
and/or sell copies of the Software, and to permit persons to whom the |
50
|
|
|
|
|
|
|
Software is furnished to do so, subject to the following conditions: |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included |
53
|
|
|
|
|
|
|
in all copies or substantial portions of the Software. |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
56
|
|
|
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
57
|
|
|
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
58
|
|
|
|
|
|
|
THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, |
59
|
|
|
|
|
|
|
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT |
60
|
|
|
|
|
|
|
OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
61
|
|
|
|
|
|
|
THE SOFTWARE. |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=cut |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
__DATA__ |