Difference between revisions of "Translations:Manual:Introduction/52/zh-CN"

From Mudlet
Jump to navigation Jump to search
(Updating translation from gettext import)
 
(Updating translation from gettext import)
 
Line 1: Line 1:
To concatenate strings together, you can use the .. expression:
+
要将字符串连接在一起,可以使用 .. 表达式:
 
<syntaxhighlight lang="lua">my_full_name = "Bob" .. " the Builder"</syntaxhighlight>
 
<syntaxhighlight lang="lua">my_full_name = "Bob" .. " the Builder"</syntaxhighlight>

Latest revision as of 01:02, 7 December 2021

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (Manual:Introduction)
To concatenate strings together, you can use the .. expression:
<syntaxhighlight lang="lua">my_full_name = "Bob" .. " the Builder"</syntaxhighlight>

要将字符串连接在一起,可以使用 .. 表达式:

my_full_name = "Bob" .. " the Builder"