Help for this page

Select Code to Download


  1. or download this
      sub my_push {
        my(@array, @list) = @_;
        ...
    
  2. or download this
      sub my_push (\@@) {
        my($array_ref, @list) = @_;
        ...