Difference between revisions of "Lua:bNot"
Jump to navigation
Jump to search
(Created page with "<h2>bNot(int) : Binary not</h2> <pre> -- ~1 print( bNot(1) ) -- 2 0001 ----- 1110 </pre>") |
|||
Line 2: | Line 2: | ||
<pre> | <pre> | ||
-- ~1 | -- ~1 | ||
− | print( bNot(1) ) -- 2 | + | print( bNot(1) ) -- -2 |
0001 | 0001 |
Revision as of 02:29, 17 February 2021
bNot(int) : Binary not
-- ~1 print( bNot(1) ) -- -2 0001 ----- 1110