Changeset 12915 for docs/Perl6/Perl5
- Timestamp:
- 09/01/06 01:05:31 (2 years ago)
- Files:
-
- 1 modified
-
docs/Perl6/Perl5/Differences.pod (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
docs/Perl6/Perl5/Differences.pod
r12865 r12915 283 283 L<S29/"Obsolete"> 284 284 285 =begin TODO 286 287 The new syntax didn't test out to work. Waiting on confirmation 288 of correct examples. 289 290 #=head2 references are now Captures 285 =head2 references are gone / everything is a reference 291 286 292 287 C<Capture> objects fill the ecological niche of references in Perl 6. … … 306 301 Now: %h = ( k => @a ); 307 302 303 To pass an argument to modify by reference: 304 305 Was: sub foo {...}; foo(\$bar) 306 Now: sub foo ($bar is rw); foo($bar) 307 308 308 The "obsolete" reference above has the details. Also, look for 309 309 I<Capture> under L<S02/"Names_and_Variables">, or at the Capture FAQ, 310 310 L<Perl6::FAQ::Capture>. 311 312 =end TODO313 311 314 312 =head2 say()
