Hi all, I've written a function to break a list into chunks of size N -
(de Chunks (Lst N)
(make
(while Lst
(link (head N Lst))
(cut N 'Lst) ) ) )
Does this look reasonable? Or am I missing something builtin?
Regards,
Kashyap
