qb64-include/bool.bi

5 lines
93 B
Text
Raw Normal View History

2022-09-19 01:27:48 +02:00
$if bool = undefined then
$let bool = defined
2022-03-18 18:33:58 +01:00
Const False = 0
2022-09-19 01:27:48 +02:00
Const True = Not False
$end if