Lua - Strings

Published 2014/03/03 by Admin in LUA
When making string values the characters that always give the most problem are the " and ' (I don't know whether I should put them inside "quotes". My brain just exploded because of the Recursion...). Below is a guide as to the correct implementation of strings and quotes.
  • value="single 'quoted' string and double \"quoted\" string", or
  • value='single \'quoted\' string and double "quoted" string', or
  • value=[[multiple line
    with 'single'
    and "double" quoted strings inside]]
Hopefully this informations helps more than it confuses...

my coding

This is a collection of all the coding gems I have found and would like to share with the world!