Help for this page

Select Code to Download


  1. or download this
    my @Arra = ( 1, 2, 3, 4 );
    PassByReference(\@Arra);
    sub PassByReference {
         die "@_";
    }
    
  2. or download this
    use Data::Dumper;
    
    ...
    
    
    sub DIE { print Dumper(@_) };