Quit: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
(return code) |
||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
[[quit]] terminates the program. | |||
''Changed in PyMOL 1.6: Added return code'' | |||
=== | == Usage == | ||
quit [code] | |||
== Arguments == | |||
* '''code''' = int: Return code {default: 0} | |||
== Python API == | |||
<source lang="python"> | <source lang="python"> | ||
cmd.quit() | cmd.quit(code: int) | ||
</source> | </source> | ||
[[Category:Commands|Quit]] | [[Category:Commands|Quit]] | ||
[[Category:Input Output Module|Quit]] | [[Category:Input Output Module|Quit]] |
Latest revision as of 15:21, 2 December 2020
quit terminates the program.
Changed in PyMOL 1.6: Added return code
Usage
quit [code]
Arguments
- code = int: Return code {default: 0}
Python API
cmd.quit(code: int)