The translation was automatically locked due to following alerts: Could not merge the repository.
Loading…
None
New source string testing_project / Documentation: dev_guide/lua_style_guide — English |
Things to check
Glossary
| English | English | ||
|---|---|---|---|
| No related strings found in the glossary. | |||
None
function say_greeting(period, name)
local a = "good " .. period .. ", " .. name
end
-- Good
function say_greeting(period, name)
local a = string.format("good %s, %s", period, name)
end
-- Best
local say_greeting_fmt = "good %s, %s"
function say_greeting(period, name)
local a = say_greeting_fmt:format(period, name)
end