Closed this issue 3 years ago · 1 comments
It just occurred to me that these unary ops should have these semantics:
+X => self.star = True -X => self.star = False ~X => self.star = not self.star
+X
self.star = True
-X
self.star = False
~X
self.star = not self.star
This was taken care of by #98