Documentation: Difference between revisions

Content added Content deleted
m (→‎{{header|Perl 6}}: fix markup)
Line 954: Line 954:
Similarly to Perl 5, Perl 6 is documented using [http://perlcabal.org/syn/S26.html Pod] (a redesigned version of POD). However, it's not simply ignored by the parser as in Perl 5, it's an internal part of the language spec and can be used to attach documentation objects to almost any part of the code.
Similarly to Perl 5, Perl 6 is documented using [http://perlcabal.org/syn/S26.html Pod] (a redesigned version of POD). However, it's not simply ignored by the parser as in Perl 5, it's an internal part of the language spec and can be used to attach documentation objects to almost any part of the code.


<lang Perl6>#= it's yellow
<lang perl6>#= it's yellow
sub marine { ... }
sub marine { ... }
say &marine.WHY; # "it's yellow"
say &marine.WHY; # "it's yellow"