Lua 中的 "$" 符号是什么意思?

我想知道在 Lua 中美元符号 $ 是如何使用的。

它是否保留给某些特定的用途?

如果是这样,我将感谢您提供一个示例。

点赞
用户9992463
用户9992463

将下面翻译成中文并且保留原本的 markdown 格式:

its is not a part of the language
It is used to show the parts that are usually executed in any language
(i.e. what is usually written at execution on the compiler)

这不是语言的一部分,它用于显示任何语言通常执行的部分(即通常在编译器上编写的内容)。

在 Python 中,您首先打开 cmd,然后键入以下内容:

$ python
$ from pywinauto.application import Application

但实际在命令提示符中输入时,您不需要输入 $,只需输入以下内容:

from pywinauto.application import Application

$ 用于表示其是文档阶段中的执行步骤。

2018-07-26 06:14:53