1
1
Fork 0
mirror of https://github.com/FellippeHeitor/InForm.git synced 2024-09-19 12:14:49 +00:00

Updated Constants (markdown)

FellippeHeitor 2016-12-19 10:38:00 -02:00
parent c95dd50c5b
commit e4c0bd30e8

@ -1,3 +1,10 @@
InForm sets some global constants that are user-accessible.
* [[True/False|Boolean]]
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]]