Boolean

From Free Pascal wiki
Revision as of 10:10, 12 June 2016 by FPC user (talk | contribs) (sizeof)
Jump to navigationJump to search

Deutsch (de) English (en) suomi (fi) français (fr) русский (ru) 中文(中国大陆)‎ (zh_CN)

Overview

Boolean is a logical datatype. Data of type boolean has one of only two values, either true or false. I Boolean variable is 1 byte in size.

The true value is used to indicate a comparison or test was successful; the false value is used to indicate a comparison or test was not successful.

write (3 > 5)

FALSE

write (0 = 0);

TRUE

See also


navigation bar: data types
simple data types

boolean byte cardinal char currency double dword extended int8 int16 int32 int64 integer longint real shortint single smallint pointer qword word

complex data types

array class object record set string shortstring