Currently, relational operators are only supported on two arguments> `(<= 5 9)` will yield `T`. `(<= 5 9 9)` should also yield `T`. This is because `5 <= 9` _AND_ `9 <= 9`. However, currently errors are just thrown.