split-at

[procedure] split-at x k

SRFI-1: splits the list x at index k, returning a list of the first k elements, and the remaining tail.

See also take, drop, split-at!.