trap
lib callCapy
function trap()
Description
trap stops the current handler.
Return Values
no value because execution stops
Errors
trap always aborts execution.
Example
Capy
if false { trap() }
print("handler continues\n")
function trap()
trap stops the current handler.
no value because execution stops
trap always aborts execution.
if false { trap() }
print("handler continues\n")