home *** CD-ROM | disk | FTP | other *** search
/ PCNET 2006 September - Disc 1 / PCNET_CD_2006_09.iso / shareware / autoit-v3-setup.exe / Examples / Helpfile / BitXOR.au3 < prev    next >
Encoding:
Text File  |  2006-06-17  |  132 b   |  4 lines

  1. $x = BitXOR(10, 6)  ;x == 12 because 1010b XOR 0110b == 1100
  2.  
  3. $x = BitXOR(2, 3, 6) ;x == 7 because 0010 XOR 0011 XOR 0110 = 0111
  4.