Lua Programming/How to Lua/concatenation

      The doubledot symbol is used as a concatenation operator within Lua:

      greeting = "Hello"
      friends = "World"
      message = greeting .. " " .. friends
      print (message)
      
      Last modified on 1 February 2011, at 20:38