Skip to content

Instantly share code, notes, and snippets.

@glts
Created October 27, 2012 11:51
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 glts/3964396 to your computer and use it in GitHub Desktop.
Save glts/3964396 to your computer and use it in GitHub Desktop.
Minimal working example of Perl POD with Unicode chars
use Module::Build;
my $build = Module::Build->new(
module_name => 'MyModule',
license => 'perl',
requires => { perl => '5.12.1' },
);
$build->create_build_script();
Build.PL
lib/MyModule.pm
MANIFEST This list of files
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