Skip to content

Instantly share code, notes, and snippets.

@naveensrinivasan
Created August 25, 2011 21:50
Show Gist options
  • Save naveensrinivasan/1172081 to your computer and use it in GitHub Desktop.
Save naveensrinivasan/1172081 to your computer and use it in GitHub Desktop.
C# SelectMany in Clojure
(def x `(1 2 3))
(def y `(4 5 6))
(def z `(7 8 9))
(println (mapcat list x y z))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment