Version 12 of then

Updated 2007-06-01 10:17:31 by LV

Optional argument of if. It's usually good style to omit the then itself, but can aid clarity when using multi-line expressions. Compare with else.

 if {$some_long_and_complex_condition
     && $some_other_condition_making_it_even_longer
 } then {
      # do the right thing here
 } else {
      # do the other right thing here
 }

--- Category Command | Category Control Structure