Changeset 12922 for docs/Perl6/Perl5
- Timestamp:
- 09/01/06 09:53:41 (2 years ago)
- Files:
-
- 1 modified
-
docs/Perl6/Perl5/Differences.pod (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
docs/Perl6/Perl5/Differences.pod
r12921 r12922 105 105 Some highlights: 106 106 107 =head2 q (), qq(), etc have changed108 109 Was: q (foo)107 =head2 qw() has a customary form; new interpolating form 108 109 Was: qw(foo) 110 110 Now: <foo> 111 111 112 Was: qq(foo) 113 Now: <<foo>> 112 Was: ("foo", (split /s+/, $bar), "bat") 113 Now: <<foo $bar bat>> 114 115 Quoting operators now have modifiers that can be used with them (much 116 like regexes and substitutions in Perl 5), and you can even define 117 your own quoting operators. See S03 for details. 114 118 115 119 =cut
