New pages
Jump to navigation
Jump to search
- 23:54, 16 February 2021 Lua:writeToClipboard (hist) [70 bytes] Ajanuw (talk | contribs) (Created page with "<p>writeToClipboard(text): Writes the given text to the clipboard</p>")
- 23:54, 16 February 2021 Lua:readFromClipboard (hist) [62 bytes] Ajanuw (talk | contribs) (Created page with "<p>readFromClipboard(): Reads the text from the clipboard</p>")
- 21:29, 16 February 2021 Lua:bNot (hist) [113 bytes] Ajanuw (talk | contribs) (Created page with "<h2>bNot(int) : Binary not</h2> <pre> -- ~1 print( bNot(1) ) -- 2 0001 ----- 1110 </pre>")
- 21:27, 16 February 2021 Lua:bShr (hist) [128 bytes] Ajanuw (talk | contribs) (Created page with "<h2>bShr(int, int2) : Binary shift right</h2> <pre> -- 1 >> 1 print( bShr(1,1) ) -- 0 0001 ----- 0000 </pre>")
- 21:26, 16 February 2021 Lua:bShl (hist) [127 bytes] Ajanuw (talk | contribs) (Created page with "<h2>bShl(int, int2) : Binary shift left</h2> <pre> -- 1 << 1 print( bShl(1,1) ) -- 2 0001 ----- 0010 </pre>")
- 21:25, 16 February 2021 Lua:bAnd (hist) [124 bytes] Ajanuw (talk | contribs) (Created page with "<h2>bAnd(int1, int2) : Binary And</h2> <pre> -- 1 & 2 print( bAnd(1,2) ) -- 0 0001 0010 ----- 0000 </pre>")
- 21:24, 16 February 2021 Lua:bXor (hist) [129 bytes] Ajanuw (talk | contribs) (Created page with "<h2>bXor(int1, int2) : Binary Xor</h2> <pre> -- 1 ^ 2 print( bXor(1,2) ) -- 3 0001 0010 ----- 0011 </pre>")
- 21:19, 16 February 2021 Lua:bOr (hist) [128 bytes] Ajanuw (talk | contribs) (Created page with "<h2>bOr(int1, int2) : Binary Or</h2> <pre> print( bOr(1,2) ) -- 3 </pre>")