Help for this page

Select Code to Download


  1. or download this
    my @array_of_references;
    
    ...
    7 15
    7 10
    12 20
    
  2. or download this
    if ($a < $b) {return -1}
    elseif ($a > $b) {return +1}
    else {return 0}
    
  3. or download this
    $a = 1;
    $b = 2;
    ...
    --output:--
    -1 
    1