a = true
b = false

_If a and b _Then
    _Print_Console("Both a and b are true")
_Else
    _Print_Console("At least one of a and b is false")
_End_If

_If a or b _Then
    _Print_Console("At least one of a and b is true")
_End_If

_If not a _Then
    _Print_Console("a is false")
_End_If