NAME Pod::Example - Module for getting example from POD. SYNOPSIS use Pod::Example qw(get); my $example = get($file_or_module[, $section[, $number_of_example]]); SUBROUTINEs "get($file_or_module[, $section[, $number_of_example]])" Returns code of example. $file_or_module - File with pod doc or perl module. $section - Pod section with example. Default value is 'EXAMPLE'. $number_of_example - Number of example. Default value is first example. ERRORS Mine: Cannot open pod file or Perl module. EXAMPLE # Pragmas. use strict; use warnings; # Modules. use Pod::Example qw(get); # Get and print code. print get('Pod::Example')."\n"; # Output: # This example. DEPENDENCIES Error::Pure, Exporter, Module::Info, Pod::Abstract, Readonly. REPOSITORY AUTHOR Michal Špaček LICENSE AND COPYRIGHT BSD license. VERSION 0.02