Restored from previous forum. Originally posted by bluez.
well, i can confirm it's not in there, just tried it...
a.l = not b.l
a.l = b.l xor c.l
in gfa, a value / variable is considered 'true' if it is unequal to zero, and it looks like pure does the same thing
here are some things i am familiar with (i have not checked if they exist in pure!)
NOT ' binairy not
! ' binairy not
!! ' explicit logical not
AND ' binairy and
& ' same
&& ' explicit logical and
^^ ' logical xor
XOR ' well...

EQV ' not xor
IMP ' too deep for me :-/
<< ' shift left
SHL ' <<
SHR
ROR
ROL
DIV
MOD
some commands:
ADD a,b ' a = a + b
INC x ' x = x + 1
DEC x ' x = x - 1
x++ ' x = x + 1
x+=1 ' x = x + 1
or functions:
x=ADD(a,b,c,d,e) ' x = a + b + c + d + e
... this copy of me has been unregistered for 36 years (no spam please)