File Coverage

blib/lib/Perl6/Cookbook.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Perl6::Cookbook;
2              
3 1     1   22742 use strict;
  1         3  
  1         83  
4 1     1   6 use warnings;
  1         2  
  1         30  
5              
6 1     1   29 use 5.008;
  1         7  
  1         70  
7              
8             our $VERSION = '0.05';
9              
10             =head1 NAME
11              
12             Perl6::Cookbook - The Perl Cookbook examples implemented in Perl 6
13              
14             =head1 SYNOPSIS
15              
16             After installation run the C script to find out
17             where were the examples installed.
18              
19             =head1 DESCRIPTION
20              
21             See also Rakudo Feature status:
22             L
23              
24             =head1 COPYRIGHT
25              
26             Copyright 2009 Gabor Szabo. L
27              
28             =head1 LICENSE
29              
30             This program is free software; you can redistribute it and/or
31             modify it under the same terms as Perl 5 itself.
32              
33             =cut
34              
35             1;