Help for this page

Select Code to Download


  1. or download this
    sub insert_after_first {
        return if @_ < 3;
    ...
                 : insert_after_first( $elem, $new, @_ )
               );
    }
    
  2. or download this
    sub insert_after_first {
        return if @_ < 3;
    ...
                 : insert_after_first( $elem, @_ )
                 );
    }
    
  3. or download this
    sub insert_after_first {
        return if @_ < 3;
    ...
                 : &insert_after_first
           );
    }