Help for this page

Select Code to Download


  1. or download this
    $i = 5;
    $i = $i++;
    print $i, "\n"; # 5\n
    
  2. or download this
    $i = 5;
    $i = ++$i;
    print $i, "\n"; # 6\n