Difference between revisions of "false and true"

From Free Pascal wiki
Jump to navigationJump to search
m
Line 1: Line 1:
 +
{{False}}
 +
 
The [[Const|const]]ant '''false''' is used to define the false condition in a [[ßoolean|boolean]] variable, as opposed to its opposite, [[True|true]].  This is a [[manifest constant]] which is defined as part of the [[Standard type|standard data types]] the compiler initially knows about.
 
The [[Const|const]]ant '''false''' is used to define the false condition in a [[ßoolean|boolean]] variable, as opposed to its opposite, [[True|true]].  This is a [[manifest constant]] which is defined as part of the [[Standard type|standard data types]] the compiler initially knows about.
  

Revision as of 10:28, 11 December 2013

English (en)

The constant false is used to define the false condition in a boolean variable, as opposed to its opposite, true. This is a manifest constant which is defined as part of the standard data types the compiler initially knows about.

This constant value must be predefined by the compiler as there is no way to define it in terms of anything else.