lua-decompile 0.1.0

a lua bytecode decompiler library
Documentation
local x = true
local y = true
local z = 5

if false then
	print("Skip instructions")
end

if x and y then
	print("True")
elseif x or y then
	print("True?")
elseif z > 10 then
	print("what")
else
	print("False")
	print("False again to make sure")
end

print("Continue")