Tcl: Difference between revisions

From Halfface
Jump to navigation Jump to search
(Created page with "=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 }")
 
(No difference)

Latest revision as of 09:55, 8 September 2021

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
}