Difference between revisions of "Lua:pause"
Jump to navigation
Jump to search
m (Syntax Highlighting.) |
|||
| (4 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
[[Category:Lua]] | [[Category:Lua]] | ||
| − | '''function''' pause() | + | {{CodeBox|'''function''' pause()}} |
| − | + | Pauses the currently opened process. | |
| + | {{LuaFunctionParametersNone}} | ||
| − | === | + | === Example === |
| − | < | + | <syntaxhighlight lang="lua" line> |
| + | pause() -- The target process is now paused | ||
| + | </syntaxhighlight> | ||
| − | + | {{LuaSeeAlso}} | |
| − | + | ||
| − | + | {{Process}} | |
Latest revision as of 19:16, 25 June 2026
Pauses the currently opened process.
Function Parameters[edit]
<none>
Example[edit]
1 pause() -- The target process is now paused