-
Notifications
You must be signed in to change notification settings - Fork 1
exit
Kyuchumimo edited this page Oct 28, 2021
·
9 revisions
🧩 This function depends on sys
Python 3.x built-in module.
exit
This function causes program execution to be interrupted.
See the example below for a demo of this behavior.
Once execution is interrupted you are returned to the console.
#####################################
db16=[[0x14,0x0c,0x1c], [0x44,0x24,0x34], [0x30,0x34,0x6d], [0x4e,0x4a,0x4e],[0x85,0x4c,0x30], [0x34,0x65,0x24], [0xd0,0x46,0x48], [0x75,0x71,0x61], [0x59,0x7d,0xce], [0xd2,0x7d,0x2c], [0x85,0x95,0xa1], [0x6d,0xaa,0x2c], [0xd2,0xaa,0x99], [0x6d,0xc2,0xca], [0xda,0xd4,0x5e], [0xde,0xee,0xd6]]
# title: exit API Command Demo (Python)
# author: StinkerB06, edited by Kyuchumimo
while True:
cls(db16[0])
print("Press Z to exit to console.",1,1)
if btn(4):
exit()
trace("This code still runs!")
#####################################