FreeBASIC Documentation Wiki
Advertisement

BOOLEAN[]

Standard data type to reflect a boolean or binary situation - there can only be two possible states.

Description:[]

Boolean data type. Can hold the values True or False.

Examples:[]

Dim boolvar As Boolean boolvar = True

Advertisement