Difference between revisions of "Lua:bShl"

From Cheat Engine
Jump to navigation Jump to search
(Created page with "<h2>bShl(int, int2) : Binary shift left</h2> <pre> -- 1 << 1 print( bShl(1,1) ) -- 2 0001 ----- 0010 </pre>")
(No difference)

Revision as of 02:26, 17 February 2021

bShl(int, int2) : Binary shift left

-- 1 << 1
print( bShl(1,1) ) -- 2

0001
-----
0010