Created
June 22, 2017 16:44
-
-
Save infinite-Joy/c11380f691eaf8c137a53bf46b3713a6 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
user=> (conj langs "APL") | |
("APL" "clojure" "F#" "python" "java") | |
user=> (conj langs '("OCAML" "erlang")) | |
(("OCAML" "erlang") "clojure" "F#" "python" "java") | |
user=> (concat langs '("OCAML" "erlang")) | |
("clojure" "F#" "python" "java" "OCAML" "erlang") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment