Help for this page

Select Code to Download


  1. or download this
    @b = (ab, c);
    
  2. or download this
    @a = (a, bc, d);
    
  3. or download this
    sub isOrderedSublist{
        my ( $aref, $bref ) = @_; # references to arrays
    ...
        my $aref = shift;
        return( not ( $#$aref + 1 ) );
    }