lua how to make a striing code example
Example 1: Lua string
-- Strings are immutable. Immutable simply means unmodifiable or unchangeable.
a = 'this is a string'
Example 2: lua Concatenation
"string" .. "other string" -- returns: stringother string