Help for this page

Select Code to Download


  1. or download this
    foo $x,$y,$z    means           foo($x,$y,$z)    For functions,
    bar $x,$y,$z    doesn't mean    bar($x,$y,$z)       it depends on the 
    +prototype.
    ...
    chr $x,$y,$z    doesn't mean    chr($x,$y,$z)       it depends on the 
    +prototype.
    not $x+$y+$z    means           not($x+$y+$z)    For other operators,
    !   $x+$y+$z    doesn't mean    !($x,$y,$z)         it depends on the 
    +precedence.