05-10-2024, 03:20 PM
Hi Steve. I believe you may have addressed this for me once before but I'll be damned if I can find it. I do have a vague memory of the negation code which had confused me, I believe is was
As I recall, I couldn't understand why Not 1 was equal to 2?
I was going to try ( using your explanation that I can no longer find) apply the same code to the new _NEGATE to see what the answer to b = 5 * _Negate 1.
If _NEGATE is logical then _Negate 1 would be zero and not 2, correct?
Code: (Select All)
a = 5 * -1
Print a
b = 5 * Not 1
Print b
Print Not 1
I was going to try ( using your explanation that I can no longer find) apply the same code to the new _NEGATE to see what the answer to b = 5 * _Negate 1.
If _NEGATE is logical then _Negate 1 would be zero and not 2, correct?