Name

true — Returns true.

Synopsis

true

Description

The true command returns 1, or true.

Example

if { true } {
    puts "true is true"
}
	  

Produces:

true is true