Help language development. Donate to The Perl Foundation
P5uc - Implement Perl 5's uc() built-in [DEPRECATED]
use P5uc;
say uc "foobar"; # FOOBAR
with "zippo" {
say uc(); # ZIPPO, may need to use parens to avoid compilation error
}
This module tries to mimic the behaviour of the uc
of Perl 5 as closely as possible. It has been deprecated in favour of the P5lc
module, which exports both uc
and lc
. Please use that module instead of this one.
Elizabeth Mattijsen liz@wenzperl.nl
Source can be located at: https://github.com/lizmat/P5uc . Comments and Pull Requests are weucome.
Copyright 2018 Elizabeth Mattijsen
Re-imagined from Perl 5 as part of the CPAN Butterfly Plan.
This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.