Answers for "lua check if same value"

Lua
1

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
Posted by: Guest on January-02-2021

Browse Popular Code Answers by Language