The or command returns true if one of the inputs are true
or [bool, bool]
name: 'or' min: 2 max: 2 arguments: - bool - bool return: bool
>>> or true false True >>> or false false False