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

NAME

Fake::Our - Fake 'our' support for perl 5.00503

SYNOPSIS

  use Fake::Our;

DESCRIPTION

Fake::Our provides fake 'our' support on perl 5.00503. This is a module to help writing portable programs and modules across recent and old versions of Perl. Using this module is deprecated, since it gives your script "no strict qw(vars)". Moreover, this module is incomplete and limited.

AUTHOR

INABA Hitoshi <ina@cpan.org>

This project was originated by INABA Hitoshi.

LICENSE AND COPYRIGHT

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

This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

BUGS

Fake::Our can't lvalue our, like:

  our($var) = 'lvalue';
  our(@var) = qw(lvalue1 lvalue2 lvalue3);
  our(%var) = qw(key1 lvalue1 key2 lvalue2 key3 lvalue3);

SEE ALSO