Help for this page

Select Code to Download


  1. or download this
    $x ||= 0;
    
  2. or download this
    $x = -1; $x ||= 0; print $x;
    -1
    ...
    3
    $x = 123132; $x ||= 0; print $x;
    123132