xxxxxxxxxx
-- This script prints out two strings together on one line
local variable = "This is one string"
print(variable .. " and this is another.")
xxxxxxxxxx
local string = "" -- strings are enclosed in "" or ''
print(string) -- prints our variable string
print("Hello") -- directly print a string