Difference between revisions of "Lua:bAnd"

From Cheat Engine
Jump to navigation Jump to search
(Created page with "<h2>bAnd(int1, int2) : Binary And</h2> <pre> -- 1 & 2 print( bAnd(1,2) ) -- 0 0001 0010 ----- 0000 </pre>")
(No difference)

Revision as of 02:25, 17 February 2021

bAnd(int1, int2) : Binary And

-- 1 & 2
print( bAnd(1,2) ) -- 0

0001
0010
-----
0000