Skip to content

Commit a0ebb8c

Browse files
committed
Adds from @kivikakk to test #55. Thanks for the issue
1 parent 3d6c595 commit a0ebb8c

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

t/test.pod6

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
=begin pod
2+
3+
Pod 6, indicated by extension.
4+
5+
=end pod
6+
7+
#| Base class for magicians
8+
class Magician {
9+
has Int $.level;
10+
has Str @.spells;
11+
}
12+
13+
#| Fight mechanics
14+
sub duel(Magician $a, Magician $b) {
15+
}
16+
#= Magicians only, no mortals.

0 commit comments

Comments
 (0)