def __le__(self, other): raise interpreterError("Command is unorderable!")
def __mod__(self, other): raise interpreterError("Tried to mod a command!")
def __pow__(self, other): raise interpreterError("Tried to pow a command!")
def __mul__(self, other): raise interpreterError("Tried to multiply a command!")
def __truediv__(self, other): raise interpreterError("Tried to divide a command!")
def __sub__(self, other): raise interpreterError("Tried to subtract a boolean!")
def __sub__(self, other): raise interpreterError("Tried to subtract a command!")
def __add__(self, other): if type(self) == type(other): return type(self)(self.token + other.token, False) raise interpreterError("Tried to add incompatible types!")
def __pow__(self, other): raise interpreterError("Tried to pow a string!")
def __mod__(self, other): raise interpreterError("Tried to mod a string!")
def __truediv__(self, other): raise interpreterError("Tried to divide a string!")
def __mul__(self, other): raise interpreterError("Tried to multiply a string!")