Scrybe supports the logical operators and, or, not, and in. These work how you would expect, and have normal precendece. in works with both normal variables and lists.
and
or
not
in
say(not 5 < 3); // true say("e" in "world"); // false say(1 and 2 and 3); // true