“Lua Multiline Comment” Ответ

Lua Multiline Comment

--[[ 
This
is
a
comment
on
many
different
lines!
]]--
Concerned Civet

Lua Multiline String

answer = [[
Multiline strings in Lua do not interpret escape sequences like \n.

When running over multiple lines the enters are included, only
when the first character is a newline it is ignored.

These strings can be nested with = signs between the brackets like 
multiline comments: [=[This would be a valid string too]=].
]] --> multiline string with trailing newline
anderium

Ответы похожие на “Lua Multiline Comment”

Вопросы похожие на “Lua Multiline Comment”

Смотреть популярные ответы по языку

Смотреть другие языки программирования