Difference between revisions of "Translations:Manual:Introduction/61/zh-CN"
Jump to navigation
Jump to search
(Updating translation from gettext import) |
(Updating translation from gettext import) |
||
Line 1: | Line 1: | ||
− | + | 如果你希望在发送命令中包含变量,那么需要在引号前面加上两个点的前缀和后缀,例如 : | |
<syntaxhighlight lang="lua">send("My name is " .. full_name .. ". What's yours?")</syntaxhighlight> | <syntaxhighlight lang="lua">send("My name is " .. full_name .. ". What's yours?")</syntaxhighlight> |
Latest revision as of 01:01, 3 December 2021
如果你希望在发送命令中包含变量,那么需要在引号前面加上两个点的前缀和后缀,例如 :
send("My name is " .. full_name .. ". What's yours?")