Help for this page

Select Code to Download


  1. or download this
        my @arr = qw(a b c d c e f);
        insert_after_first(\@arr, "c", "x");
    
  2. or download this
        a b c x d c e f
    
  3. or download this
        sub insert_after_first {
            my($arr, $element, $insert) = @_;
    ...
            }
        }