Appearance
Lua has "literal strings", multiline strings which do not interpret escape codes - which are denoted by double square brackets [[ ... ]].
[[ ... ]]
local shop_sign = [[ =-=-=-=-=-=-=-=-=-= ===== WELCOME ===== =-=-=-=-=-=-=-=-=-= ]]
See Programming in Lua : 2.4 strings