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

From Mudlet
Jump to navigation Jump to search
(Updating translation from gettext import)
 
(Updating translation from gettext import)
 
Line 1: Line 1:
If your commands ends with a variable, you don't need the two dots after:
+
如果命令以变量结束,那么不需要在最后加两个点 :
 
<syntaxhighlight lang="lua">send("Hi, my name is " .. character)</syntaxhighlight>
 
<syntaxhighlight lang="lua">send("Hi, my name is " .. character)</syntaxhighlight>

Latest revision as of 01:02, 24 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)
If your commands ends with a variable, you don't need the two dots after:
<syntaxhighlight lang="lua">send("Hi, my name is " .. character)</syntaxhighlight>

如果命令以变量结束,那么不需要在最后加两个点 :

send("Hi, my name is " .. character)