print("string, or text, are enclosed in double quotation marks") message = "You don’t need to declare types for variables, as they are changed dynamically in Lua" print(message) -- To combine strings, connect them with ".." name = "Alicia Solid" print("Hello "..name..", how are you?") num = 1234 print("You have "..num.." left")