Help for this page

Select Code to Download


  1. or download this
    printf "%s %s\n", shift( @ID ), shift( @name ) while @ID && @name;
    
  2. or download this
    my @nyuck = ( @ID, reverse @name );
    printf "%s %s\n", shift( @nyuck ), pop( @nyuck ) while @nyuck;