52 posts
Posted 23 May 2013 - 09:49 PM
What does a variable set to a apostrophe mean. For instance: local info = "". What does that mean?
375 posts
Location
USA
Posted 23 May 2013 - 10:01 PM
"" is an empty string, as opposed to a non-empty string like "hello". If you print info in your example, nothing is printed.