bin/crypto.lua
Ryan Ward 5069cc6b0a Some restructuring
I needed the library to return bin when required and not modify the global namepace
2018-07-18 09:56:48 -04:00

7 lines
117 B
Lua

package.path="?/init.lua;"..package.path
require("bin")
local bits = bin.bits
for i=0,255 do
print(bits.new(i))
end