diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-06-17 13:29:04 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-06-17 13:32:58 -0700 |
commit | 4a904372e4d28940f0bcc3b8501925d58b3f0e68 (patch) | |
tree | 61615a52d9e4f65843b6a0f8f415c76b247d9f69 /lib/CORE.pod | |
parent | 65613fc23b9817bb12168505453c08d1b6b1baf2 (diff) | |
download | perl-4a904372e4d28940f0bcc3b8501925d58b3f0e68.tar.gz |
Doc update for changes in 5.15.0 + tweaks
Diffstat (limited to 'lib/CORE.pod')
-rw-r--r-- | lib/CORE.pod | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/CORE.pod b/lib/CORE.pod index c917bba44a..b96c1de2d6 100644 --- a/lib/CORE.pod +++ b/lib/CORE.pod @@ -10,11 +10,14 @@ CORE - Pseudo-namespace for Perl's core routines print hex("0x50"),"\n"; # prints 1 print CORE::hex("0x50"),"\n"; # prints 80 + CORE::say "yes"; # prints yes =head1 DESCRIPTION The C<CORE> namespace gives access to the original built-in functions of -Perl. There is no C<CORE> package, and therefore you do not need to use or +Perl. It also provides access to keywords normally available +only through the L<feature> pragma. There is no C<CORE> +package, and therefore you do not need to use or require an hypothetical "CORE" module prior to accessing routines in this namespace. |