Skip to content

Instantly share code, notes, and snippets.

@AlexDaniel
Last active August 31, 2018 16:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AlexDaniel/b35d5f67c0c0e2cbf41416932d7acbe8 to your computer and use it in GitHub Desktop.
Save AlexDaniel/b35d5f67c0c0e2cbf41416932d7acbe8 to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl6
=begin pod
=head1 # This is an head1 title
This is a paragraph.
=head2
# Subsection
Here some text for the subsection.
=end pod
for $=pod -> $pod-item {
for $pod-item.contents -> $pod-block {
$pod-block.perl.say;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment