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
local a, b = 123, "hello"
if a >= 123 and b == "hello" then
    print "yes"
end

if b <= "world" then
    print (a>100)
end

print (a == 1000 and b == "hello")
print (a<b)
print (a>b)
print (a<=b)
print (a>=b)