luah 1.1.0

Unofficial lua impl by HydroRoll-Team.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
g1 = 1
g2 = 2

if g1 or g2 and g3 then
    print "test only once"
end

if g3 or g1 and g2 then
    print "test 3 times"
end

if (g3 or g1) and (g2 or g4) then
    print "test 3 times"
end

if (g3 or g1) and (g2 and g4) then
    print "test 4 times and fail"
end