Code: Select all
a=12345
b=67890
a+b : b=a-b : a-b
Debug a
Debug b

Code: Select all
a=12345
b=67890
a+b : b=a-b : a-b
Debug a
Debug b
Code: Select all
a=12345
b=67890
a|b : b!a : a!b
Debug a
Debug b

Code: Select all
A = 1
B = 2
; Let's swap them without using a temp third variable
B = 1
A = 2