Help for this page

Select Code to Download


  1. or download this
    ( ( $fred == 42) ? ( $config = 'k1') : ( $config ) ) = 'k2';
    
  2. or download this
    ( $fred == 42 ) ? ( $config = 'k1' ) : ( $config = 'k2' );
    
  3. or download this
    $lo = $hi = 0; 
    $x = 7; $mid = 5; 
    ...
    
    print "lo:$lo hi:$hi";;
    lo:0 hi:7