Lua:bShl
Jump to navigation
Jump to search
bShl(int, int2) : Binary shift left
-- 1 << 1 print( bShl(1,1) ) -- 2 or print(1 << 1) 0001 ----- 0010