Please examine the code below and help me understand what's going on
here?
Why do I get different results?
x@(Root traits) checkMe: a against: b
[
(a)
\/ [b /\ ['c']]
].
x@(Root traits) checkMe2: a against: b
[
(a)
or: [b and: ['c']]
].
Slate 19> checkMe: Nil against: False.
False
Slate 20> checkMe2: Nil against: False.
True
John