The and command returns true if both inputs are true.
and [bool, bool]
name: 'and' min: 2 max: 2 arguments: - bool - bool return: bool
>>> and true true True >>> and false true False