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

From Mudlet
Jump to navigation Jump to search
(Updating translation from gettext import)
 
(Updating translation from gettext import)
 
Line 1: Line 1:
Don't forget to use a space when you're concatenating two variables together:
+
将两个变量放在一起时不要忘记使用空格:
 
<syntaxhighlight lang="lua">
 
<syntaxhighlight lang="lua">
 
firstname = "Apple"
 
firstname = "Apple"
 
lastname = "Red"
 
lastname = "Red"

Latest revision as of 01:01, 15 November 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)
Don't forget to use a space when you're concatenating two variables together:
<syntaxhighlight lang="lua">
firstname = "Apple"
lastname = "Red"

将两个变量放在一起时不要忘记使用空格: <syntaxhighlight lang="lua"> firstname = "Apple" lastname = "Red"