FirstSymbol = 11 if FirstSymbol ~= 11 or FirstSymbol ~= 12 then print("Not equal to 11 or 12") else print("Its 11 or 12") end
This executes ‘Not equal to 11 or 12’. Why?
It works with a single expression like this:
FirstSymbol = 11 if FirstSymbol ~= 11 then print("Not equal to 11") else print("Its 11") end
