line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Acme::MetaSyntactic::stratego; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
132693
|
use strict; |
|
1
|
|
|
|
|
8
|
|
|
1
|
|
|
|
|
54
|
|
4
|
1
|
|
|
1
|
|
10
|
use warnings; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
76
|
|
5
|
1
|
|
|
1
|
|
7
|
no warnings 'syntax'; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
54
|
|
6
|
|
|
|
|
|
|
|
7
|
1
|
|
|
1
|
|
7
|
use Acme::MetaSyntactic::List; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
108
|
|
8
|
|
|
|
|
|
|
our @ISA = qw [Acme::MetaSyntactic::List]; |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
our $VERSION = '2012060701'; |
11
|
|
|
|
|
|
|
__PACKAGE__ -> init (); |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
1; |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 NAME |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Acme::MetaSyntactic::stratego - Stratego pieces |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 DESCRIPTION |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
This C<< Acme::MetaSyntactic >> theme lists the pieces from the |
22
|
|
|
|
|
|
|
classical boardgame I<< Stratego >>. The game was created by |
23
|
|
|
|
|
|
|
I<< Mademoiselle Hermance Edan >> in 1908, and it was named |
24
|
|
|
|
|
|
|
I<< L'attaque >>. Currently, the game is published by I<< Jumbo >> |
25
|
|
|
|
|
|
|
and I<< Hasbro >>. I<< Stratego >> has roots in the game of |
26
|
|
|
|
|
|
|
I<< Shou Dou Qi >>. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
This module is part of the set of C<< Acme::MetaSyntactic >> themes |
29
|
|
|
|
|
|
|
found in the C<< Acme::MetaSyntactic::Themes::Abigail >> package. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head1 NOTES |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
In some editions, the I<< miner >> is known as a I<< sapper >>. |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 SEE ALSO |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
L, L, |
38
|
|
|
|
|
|
|
L<< Acme::MetaSyntactic::shou_dou_qi >>, L<< http://www.stratego.com/ >>. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 AUTHOR |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
Abigail, L<< mailto:cpan@abigail.be >>. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 COPYRIGHT and LICENSE |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
Copyright (C) 2012 by Abigail. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
49
|
|
|
|
|
|
|
copy of this software and associated documentation files (the "Software"), |
50
|
|
|
|
|
|
|
to deal in the Software without restriction, including without limitation |
51
|
|
|
|
|
|
|
the rights to use, copy, modify, merge, publish, distribute, sublicense, |
52
|
|
|
|
|
|
|
and/or sell copies of the Software, and to permit persons to whom the |
53
|
|
|
|
|
|
|
Software is furnished to do so, subject to the following conditions: |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included |
56
|
|
|
|
|
|
|
in all copies or substantial portions of the Software. |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
59
|
|
|
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
60
|
|
|
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
61
|
|
|
|
|
|
|
THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, |
62
|
|
|
|
|
|
|
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT |
63
|
|
|
|
|
|
|
OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
64
|
|
|
|
|
|
|
THE SOFTWARE. |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
=cut |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
__DATA__ |