home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / autoit-v3-setup.exe / Examples / BitOR.au3 < prev    next >
Text File  |  2004-09-22  |  135b  |  4 lines

  1. $x = BitOR(3, 6) ;x == is 7 because 0011 OR 0110 = 0111
  2.  
  3. $x = BitOR(3, 15, 32) ;x == 47 because 0011 OR 1111 OR 00100000 = 00101111
  4.