Skip to content

Instantly share code, notes, and snippets.

@mori-dev
Created April 1, 2010 15:23
Show Gist options
  • Save mori-dev/351934 to your computer and use it in GitHub Desktop.
Save mori-dev/351934 to your computer and use it in GitHub Desktop.
(defun aws-cut-search-ring (n lst)
(if (or (>= 0 n) (null lst)) nil
(cons (car lst)
(aws-cut-search-ring (- n 1) (cdr lst)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment