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

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

feature

Say::Compat

Perl6::Say

LICENSE

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