Created
November 14, 2009 21:50
-
-
Save deobald/234800 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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