From e4c0bd30e8f63b1dcc92b2ceb72b40f7d84f1017 Mon Sep 17 00:00:00 2001 From: FellippeHeitor Date: Mon, 19 Dec 2016 10:38:00 -0200 Subject: [PATCH] Updated Constants (markdown) --- Constants.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Constants.md b/Constants.md index a2b876e..bb18ae8 100644 --- a/Constants.md +++ b/Constants.md @@ -1,3 +1,10 @@ InForm sets some global constants that are user-accessible. -* [[True/False|Boolean]] \ No newline at end of file + CONST True = -1 + CONST False = NOT True + +That's the traditional way of setting boolean values in QB64, as it allows bit manipulation with operators like NOT, AND, OR, etc. + +See also: +[[Properties]] +[[Global Variables]] \ No newline at end of file