Help for this page

Select Code to Download


  1. or download this
        ...
        return if $x > 0 and $y < 0 or $x < 0 and $y > 0;
        ...
    
  2. or download this
        return if ($x > 0 and $y < 0) or ($x < 0 and $y > 0);