This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
HurricaneCoder's profile picture

Variable

Started by HurricaneCoder, 23 May 2013 - 07:49 PM
HurricaneCoder #1
Posted 23 May 2013 - 09:49 PM
What does a variable set to a apostrophe mean. For instance: local info = "". What does that mean?
Yevano #2
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.