< Previous (3/14) | [Index] | Next (5/14)>
@_ special array.my @array1 = (1 , 2 , 3); my @array2 = (4 , 42); print_sum(@array1 , @array2); # inside print_sum, @_ = (1 , 2 , 3 , 4 , 42) # This is the same thing that happens when you write: my @array3 = (@array1, @array2);
Offer Kaye. YAPC::Israel::2005.
Slides automatically generated by tmpl2slides.pl. Last updated on Wed Feb 9 23:11:09 2005