Skip to content

Instantly share code, notes, and snippets.

@deobald
Created November 14, 2009 21:50
Show Gist options
  • Save deobald/234800 to your computer and use it in GitHub Desktop.
Save deobald/234800 to your computer and use it in GitHub Desktop.
(defn append [list1 list2]
(if (empty? list1)
list2
(cons (first list1) (append (rest list1) list2))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment