home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 January / PCWELT_1_2006.ISO / pcwsoft / autoit-v3-setup.exe / Examples / BitAND.au3 < prev    next >
Encoding:
Text File  |  2004-09-22  |  129 b   |  5 lines

  1. $x = BitAND(13, 7) ;x == 5 because 1101 AND 0111 = 0101
  2.  
  3. $x = BitAND(2, 3, 6) ;x == 2 because 0010 AND 0011 AND 0110 = 0010
  4.  
  5.