Skip to content

Instantly share code, notes, and snippets.

@suryagaddipati
Created August 22, 2010 03:50
Show Gist options
  • Select an option

  • Save suryagaddipati/543263 to your computer and use it in GitHub Desktop.

Select an option

Save suryagaddipati/543263 to your computer and use it in GitHub Desktop.
(defn question-seq
([] (question-seq 1)) ;start from page 1
( [x]
(lazy-seq (cons (question x) (question-seq ( inc x)) ) ) ))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment