The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Error::Pure::ANSIColor::Print - Error::Pure module for simple error print.

SYNOPSIS

 use Error::Pure::ANSIColor::Print qw(err);
 err 'This is a fatal error', 'name', 'value';

SUBROUTINES

err(@messages)
 Process error with messages @messages.

EXAMPLE1

 use strict;
 use warnings;

 use Error::Pure::ANSIColor::Print qw(err);

 # Error.
 err '1';

 # Output:
 # 1

EXAMPLE2

 use strict;
 use warnings;

 use Error::Pure::ANSIColor::Print qw(err);

 # Error.
 err '1', '2', '3';

 # Output:
 # 1

DEPENDENCIES

Error::Pure::Output::ANSIColor, Error::Pure::Utils, Exporter, List::MoreUtils, Readonly.

SEE ALSO

Task::Error::Pure

Install the Error::Pure modules.

REPOSITORY

https://github.com/tupinek/Error-Pure-ANSIColor

AUTHOR

Michal Špaček mailto:skim@cpan.org

http://skim.cz

LICENSE AND COPYRIGHT

 © 2013-2017 Michal Špaček
 BSD 2-Clause License

VERSION

0.01