home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 2 / fishmore-publicdomainlibraryvol.ii1991xetec.iso / dirs / tcl_447.lzh / TCL / tcl.lzh / tcl / help / if < prev    next >
Text File  |  1990-05-03  |  750b  |  15 lines

  1.  if test [then] trueBody [[else] falseBody]
  2.       The if command evaluates test as an expression (in the
  3.       same way that expr evaluates its argument).  If the
  4.       result is non-zero then trueBody is called by passing
  5.       it to the Tcl interpreter.  Otherwise falseBody is
  6.       executed by passing it to the Tcl interpreter.  The
  7.       then and else arguments are optional ``noise words'' to
  8.       make the command easier to read.  FalseBody is also
  9.       optional;  if it isn't specified then the command does
  10.       nothing if test evaluates to zero.  The return value
  11.       from if is the value of the last command executed in
  12.       trueBody or falseBody, or the empty string if test
  13.       evaluates to zero and falseBody isn't specified.
  14.  
  15.