Help for this page

Select Code to Download


  1. or download this
      if ( $x ) { print "true\n"; } else { print "false\n"; }
    
  2. or download this
      print "The truth value of x is " .
        ( $x ? 'true' : 'false' ) . "\n";