Hi,
I've been having a bit of a problem using the XOR operator in Tier 1 Basic. It does not appear to be working as expected. If you copy and paste the code below and run it, the results of the XOR are not as expected.
+ Code Snippeta=65
b=76
c=13
do
printc ("65 xor 13 = ")
printc (a xor c)
print (" (should be 76)")
printc ("76 xor 13 = ")
printc (b xor c)
print (" (should be 65)")
Sync()
loop
Has anyone else noticed this?
Cheers,
Orac