break

[procedure] break pred clist

SRFI-1: splits the list into the longest initial prefix whose elements all dissatisfy pred, and the remaining tail.

See also span, break!.

[procedure] break [symbol [string object ...]]

ChezScheme's break is completely different from SRFI-1's. It is used to suspend execution of program and invokes the debugger.

See break-handler

[procedure] break [message]

Chicken: enters the debugger.