compare 2 tables in lua code example
Example: lua check if same value
str1 = "a"
str2 = "b"
if str1 == str2 then -- this would print "not equal"
print("equal")
else
print("not equal")
end
if str1 == str1 then -- this would print "equal"
print("equal")
else
print("not equal")
end