Help for this page

Select Code to Download


  1. or download this
      for my $i ( 0..(@a < @b ? $#a : $#b) ) {
        return $a[$i] <=> $b[$i]
    ...
            if ( $a[$i] ne $b[$i] );
      }
      return $a cmp $b;
    
  2. or download this
    if ( condition1() ) {
        do_first_thing();     goto ENDIF_1;
    ...
    }
    ENDIF_1:  # and now back to our regular programming...