< Number | UserGuide | Function >
Strings
A string in Lua is a sequence of bytes. A byte can be a value between 0-255, representing a single character.
Declaring a string
Valid ways to create a string in Luaa = "a string" b = 'another string' c = [[A string that can be stretched over several lines]]

