Help for this page

Select Code to Download


  1. or download this
    @list = ( 'a' .. 'z' );
    
  2. or download this
    a b c d e, # arr[0]
    f g h i j, # arr[1]
    ...
    p q r s t, # arr[3]
    u v w x y, # arr[4]
    z          # arr[5]
    
  3. or download this
    #!usr/bin/perl
    
    ...
        return ( join( " ",  @arr ) ) unless @arr > 5;
        # what goes here ?
    }