简体   繁体   中英

What does “$” symbol mean in Lua?

I wonder how the dollar symbol $ is used in Lua.

Is it reserved for anything?

If so, I would appreciate an example of it.

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

in python you first open up cmd then type

$ python  
$ from pywinauto.application import Application

but u dont actually type the $ when u are actually typing in command prompt

you just type

from pywinauto.application import Application

the $ is used to show that it what is and executed step when in the documentation phase.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM