The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!perl
use strict;
use warnings;

use Acme::SuddenlyDeath;

print suddenly_death($ARGV[0] || '突然の死');
print "\n";

exit(0);

__END__

=encoding utf8

=head1 NAME

sudden-death - CLI interface of Acme::SuddenlyDeath

=head1 SYNOPSIS

    $ sudden-death [string]

    # e.g.
    #    $ sudden-death 'Sudden Death'
    #    _人人人人人人人_
    #    > Sudden death <
    #     ̄^Y^Y^Y^Y^Y^Y^ ̄

=head1 DESCRIPTION

sudden-death is the command that generates ASCII Art of sudden death (突然の死) style.

=head1 AUTHOR

papix E<lt>mail@papix.netE<gt>

=head1 DEPENDENCIES

Text::VisualWidth 0.02 or later.

=head1 LICENSE

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.

=cut