_io_exit

func _io_exit(code: Int) 'io -> Never

Terminates the process with code; this operation never resumes.

View Source
pub func _io_exit(code: Int) 'io -> Never {
	'io(request: .exit(code))
	loop {}
}