Changeset 13013 for docs/Perl6/Perl5

Show
Ignore:
Timestamp:
09/04/06 06:51:35 (2 years ago)
Author:
markstos
Message:

Differences.pod: Was: my ($s,$href) = @_; / Now my ($s,%h) = [,] @_;

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • docs/Perl6/Perl5/Differences.pod

    r13003 r13013  
    205205=head1 Subroutines 
    206206 
     207=head2 Unpack @_ as [,] @_ 
     208 
     209Notice the space after the [,]: 
     210 
     211 Was: my ($s,$href) = @_; 
     212 Now  my ($s,%h) = [,] @_; 
     213 
    207214=cut  
    208215