App::ISBN::Format - Base class for cpan-get script.
use App::ISBN::Format; my $app = App::ISBN::Format->new; my $exit_code = $app->run;
new
my $app = App::ISBN::Format->new;
Constructor.
run
my $exit_code = $app->run;
Run.
Returns 1 for error, 0 for success.
new(): From Class::Utils::set_params(): Unknown parameter '%s'. run(): ISBN '%s' is bad. ISBN '%s' is not valid.
use strict; use warnings; use App::ISBN::Format; # Arguments. @ARGV = ( '9788025343364', ); # Run. exit App::ISBN::Format->new->run; # Output: # 9788025343364 -> 978-80-253-4336-4
Business::ISBN, Class::Utils, Error::Pure, Getopt::Std.
https://github.com/michal-josef-spacek/App-ISBN-Format
Michal Josef Špaček mailto:skim@cpan.org
http://skim.cz
© 2022 Michal Josef Špaček
BSD 2-Clause License
0.02
To install App::ISBN::Format, copy and paste the appropriate command in to your terminal.
cpanm
cpanm App::ISBN::Format
CPAN shell
perl -MCPAN -e shell install App::ISBN::Format
For more information on module installation, please visit the detailed CPAN module installation guide.