Help for this page

Select Code to Download


  1. or download this
    if($x){
      $y=1;
    ...
    else{
      $y=0;
    }
    
  2. or download this
    $y = $x ? 1 : 0;
    
  3. or download this
    $x ? $y=1 : $y=0;
    
  4. or download this
    $x ? $y=1 : $y=~s/.*/0/;
    
  5. or download this
    $x ? $y=1 : ($y=~s/.*/0/)
    
  6. or download this
    $x ? $y=1 : ($y=0);
    
  7. or download this
    $y = $x ? 1 : 0;
    
  8. or download this
    $x = ((((((1 * 2) * 3) * (4 ** 2)) * 5) * 6) * 7)