line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package YAML::Manual; |
2
|
1
|
|
|
1
|
|
30024
|
use 5.005003; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
35
|
|
3
|
1
|
|
|
1
|
|
6
|
use strict; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
62
|
|
4
|
|
|
|
|
|
|
$YAML::Manual::VERSION = '0.10'; |
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
1; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
=encoding utf8 |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 NAME |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
YAML::Manual - Documentation for YAML within Perl |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 SYNOPSIS |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
> perldoc YAML::Manual |
17
|
|
|
|
|
|
|
> perldoc YAML::Manual::SpecificTopic |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 DESCRIPTION |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Using YAML within Perl is a rich topic. This set of manuals will help |
22
|
|
|
|
|
|
|
you understand all the things you need to know to use YAML effectively |
23
|
|
|
|
|
|
|
in Perl and beyond. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 TABLE OF CONTENTS |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
This manual is divided up into many POD files. Here is a top level view |
28
|
|
|
|
|
|
|
of the contents of this manual: |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=over |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=item L - Introduction to YAML in Perl. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=item L - Comparison of the YAML Perl modules. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=item L - Detailed explanation of the YAML syntax. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=item L - Handy reference card of the YAML syntax. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=item L - Fortuitously Answered Questions about YAML. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=item L - Perl APIs for YAML modules. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=item L - Soup to nuts tutorial for YAML in Perl. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=item L - Recipes for your everyday YAML dishes. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=item L - Guide to the future of YAML in Perl. |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=back |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=head1 AUTHOR |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
Ingy döt Net |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=head1 COPYRIGHT |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
Copyright (c) 2008. Ingy döt Net. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it |
61
|
|
|
|
|
|
|
under the same terms as Perl itself. |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
See http://www.perl.com/perl/misc/Artistic.html |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
=cut |