Help for this page

Select Code to Download


  1. or download this
      $x = $x * $y ;
    
      ## With the Syntax Suger:
    
      $x *= $y ;
    
  2. or download this
      $var = $var . 'xyz' ;
    
      $var .= 'xyz' ;
    
  3. or download this
      $latest = $latest > time() ? $latest : time();
    
      ## With your Syntax Suger:
      $latest ?>:= time() ;
    
  4. or download this
      ## Probably what should be made internally:
      my $tmp = time() ;
      $latest = $tmp if $latest > $tmp ;