FALSE
- Source: https://www.freebasic.net/wiki/wikka.php?wakka=KeyPgFalse
- Last revised: 2021-10-11
Intrinsic constant set by the compiler
Syntax
` Const False As Boolean
`
Description
Gives the False Boolean value where used.
Examples
start GeSHi
vb
Dim b As Boolean = False
If b Then
Print "b is True"
Else
Print "b is False"
End Ifend GeSHi
b is FalseVersion
- Since fbc 1.04.0
Dialect Differences
- Not available in the -lang qb dialect unless referenced with the alias
__False.
Differences from QB
- New to FreeBASIC
See also
TrueBoolean
Back to DocToc