I've been curious, and I notice somethings use '' and other "". What's the difference between them?
There is none. I prefer ". but many others use '. You just have to use the same one to form a string. For example you can't
local string = "text' --But you can local string2 = "text" --or local string3 = 'text'
Neither is better, but just stay consistent and choose one!
Marked as Duplicate by rexbit and BlueTaslem
This question has been asked before, and already has an answer. If those answers do not fully address your question, then please ask a new question here.
Why was this question closed?