Antsy

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

use v5.008;

package Antsy;
use strict;
use warnings;

=encoding utf8

=head1 The build file for Antsy

This build file is a modulino; it works as both a build script and
a module.

To build the distribution, run this file normally:

	% perl Makefile.PL

README.pod  view on Meta::CPAN

=pod

=encoding utf8

=for HTML <a href="https://www.github.com/briandfoy/antsy/actions?query=workflow%3Amacos"><img src="https://www.github.com/briandfoy/antsy/workflows/macos/badge.svg"></a>

=for HTML <a href="https://www.github.com/briandfoy/antsy/actions?query=workflow%3Aubuntu"><img src="https://www.github.com/briandfoy/antsy/workflows/ubuntu/badge.svg"></a>

=for HTML <a href="https://www.github.com/briandfoy/antsy/actions?query=workflow%3Awindows"><img src="https://www.github.com/briandfoy/antsy/workflows/windows/badge.svg"></a>

=for HTML <a href='https://ci.appveyor.com/project/briandfoy/antsy'><img src='https://ci.appveyor.com/api/projects/status/bmve9x6oe8npv9q6?svg=true'></a>

=for HTML <a href='https://coveralls.io/github/briandfoy/antsy?branch=master'><img src='https://coveralls.io/repos/github/briandfoy/antsy/badge.svg?branch=master' alt='Coverage Status' /></a>

lib/Antsy.pm  view on Meta::CPAN

use v5.26;

package Antsy;
use strict;
use warnings;
use utf8;
use experimental qw(signatures);

use Carp     qw(carp);
use Exporter qw(import);

our( @EXPORT, @EXPORT_OK, %EXPORT_TAGS );

our $VERSION = '0.906';

=encoding utf8

=head1 NAME

Antsy - Streaming ANSI escape sequences

=head1 SYNOPSIS

	use Antsy qw(:all);

	print bold, underline, text_red, "Hello", reset;



( run in 1.210 second using v1.01-cache-2.11-cpan-49f99fa48dc )