diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-01 17:24:53 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-01 17:24:53 +0000 |
commit | 2675e62cfb03bffd85b62ed4fc8aad4f11a85e0a (patch) | |
tree | 97771c00ac209e7d20f78820fb12b812967fb9ac /pod | |
parent | 0a110db2b51561d22aa57eb9cc154b895c788106 (diff) | |
download | perl-2675e62cfb03bffd85b62ed4fc8aad4f11a85e0a.tar.gz |
add support for Env arrays (from Gregor N. Purdy
<gregor@focusresearch.com>)
p4raw-id: //depot/perl@5405
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perldelta.pod | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod index 7345727f45..53200ebff3 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -1320,6 +1320,14 @@ information, see L<File::Glob>. Compatibility tests for C<sub : attrs> vs the older C<use attrs>. +=item lib/env + +Tests for new environment scalar capability (e.g., C<use Env qw($BAR);>). + +=item lib/env-array + +Tests for new environment array capability (e.g., C<use Env qw(@PATH);>). + =item lib/io_const IO constants (SEEK_*, _IO*). @@ -1478,6 +1486,11 @@ of Perl variables and data. It is a data debugging tool for the XS programmer. $PERL_VERSION now stands for C<$^V> (a string value) rather than for C<$]> (a numeric value). +=item Env + +Env now supports accessing environment variables like PATH as array +variables. + =item ExtUtils::MakeMaker change#4135, also needs docs in module pod |