Tcl

From Halfface
Jump to navigation Jump to search

if

if {boolean_expression} {
  # statement(s) will execute if the boolean expression is true 
} else {
  # statement(s) will execute if the boolean expression is false
}