Difference between revisions of "Lua:pause"
Jump to navigation
Jump to search
(→Related Functions) |
m (Syntax Highlighting.) |
||
| (One intermediate revision by the same user 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}} | {{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