Acme-AsciiEmoji
view release on metacpan or search on metacpan
Acme::AsciiEmoji - Ascii Emoji's
# VERSION
Version 0.04
# SYNOPSIS
use Acme::AsciiEmoji;
...
print innocent;
# Êâ¿Ê
# EXPORT
## innocent
Êâ¿Ê
Innocent face
## disapproval
lib/Acme/AsciiEmoji.pm view on Meta::CPAN
Version 1.02
=cut
=encoding utf8
=head1 SYNOPSIS
use Acme::AsciiEmoji;
...
print innocent;
# Êâ¿Ê
=cut
=head1 EXPORT
=cut
sub ascii_emoji {
return pack( 'C*', @{ $EMOJI{ $_[0] } } );
t/00-load.t view on Meta::CPAN
#!perl -T
use 5.006;
use strict;
use warnings;
use Test::More;
plan tests => 1;
BEGIN {
use_ok( 'Acme::AsciiEmoji' ) || print "Bail out!\n";
}
diag( "Testing Acme::AsciiEmoji $Acme::AsciiEmoji::VERSION, Perl $], $^X" );
( run in 0.835 second using v1.01-cache-2.11-cpan-de7293f3b23 )