2024-06-21

This commit is contained in:
2024-06-21 14:57:07 +09:00
parent 04caa2eb53
commit e00dd1bfbf
43 changed files with 2689 additions and 0 deletions

26
Writerside/topics/POD.md Normal file
View File

@@ -0,0 +1,26 @@
# 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
```