Created
October 27, 2012 11:51
-
-
Save glts/3964396 to your computer and use it in GitHub Desktop.
Minimal working example of Perl POD with Unicode chars
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use Module::Build; | |
my $build = Module::Build->new( | |
module_name => 'MyModule', | |
license => 'perl', | |
requires => { perl => '5.12.1' }, | |
); | |
$build->create_build_script(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Build.PL | |
lib/MyModule.pm | |
MANIFEST This list of files |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package MyModule; | |
# Put this file into the subdirectory lib/ | |
use v5.12.1; | |
use strict; | |
use warnings; | |
=encoding UTF-8 | |
=head1 NAME | |
MyModule - A soupçon of Юनि口δ | |
=cut | |
1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment