Changeset 12921 for docs/Perl6/Perl5
- Timestamp:
- 09/01/06 09:36:35 (2 years ago)
- Files:
-
- 1 modified
-
docs/Perl6/Perl5/Differences.pod (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
docs/Perl6/Perl5/Differences.pod
r12915 r12921 51 51 52 52 Yes, a twigil. It's the second character in the variable name. For globals, 53 it's a C<*> 53 it's a C<*>; for contextual variables, it's C<+>. 54 54 55 55 Was: $ENV{FOO} 56 Now: %ENV<FOO> 56 Now: %*ENV<FOO> 57 Or: $+FOO # might be overridden, but falls back to %*ENV 57 58 58 59 For details, see L<S02/"Names and Variables">.
