Files
perl-examples/Writerside/topics/POD.md
2024-06-21 14:57:07 +09:00

26 lines
238 B
Markdown

# POD
```perl
#!/usr/bin/perl
use warnings;
use strict;
print "Hello, World!";
while(<DATA>){
print $_;
}
__END__
=head1 'Hello World' Program
=over 4
=item * option 1
=item * option 2
=back
=cut
```
```bash
pod2html xxxx.pl
```