Skip to content
StinkerB06 edited this page Oct 14, 2017 · 21 revisions

exit

exit

Description:

Interrupt program execution and return to the console at the END of the TIC function.

Example:

-- title:  exit API Command Demo (Lua)
-- author: StinkerB06

t=0

function TIC()

	if btn(4) then exit() end

	cls(0)
	print("Press Z to exit to console.",1,1)
	t=t+1
end
Clone this wiki locally