lunify 1.1.0

A crate for converting Lua byte code to different versions and formats
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
result = 11
is_nil = nil
is_true = true
is_false = false

if not is_nil then
    result = result - 1
end

if is_true and not is_false then
    result = result - 1
end