Help for this page

Select Code to Download


  1. or download this
    sub { pop; shift; }->(@array);
    
  2. or download this
    sub { $_[0] = 'whatever' }->(@array);
    
  3. or download this
    sub { shift; $_[0] = 'whatever' }->(@array);
    # changes the *second* element of @array