NAME
say - say anything
SYNOPSIS
use say;
say "Hello!";
DESCRIPTION
say module allows Perl code to use say.
And if you would pass args to say like below, then some features are enabled to use them as same as feature module.
use say qw/state switch/;
state $foo = int(rand 10);
given ($foo) {
when (1) { say "One" }
when (2) { say "Two" }
default { say "Above Two" }
}
REPOSITORY
say is hosted on github: http://github.com/bayashi/say
I appreciate any feedback :D
AUTHOR
Dai Okabayashi <bayashi@cpan.org>
SEE ALSO
LICENSE
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.