Difference between revisions of "Lua:pause"
Jump to navigation
Jump to search
(Created page with ''''function''' pause() pauses the currently opened process. ===Function Parameters=== <none> == See also == * unpause * Lua') |
m (Syntax Highlighting.) |
||
| (5 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
| − | '''function''' pause() | + | [[Category:Lua]] |
| + | {{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