Skip to content

Instantly share code, notes, and snippets.

@jpfuentes2
Created December 24, 2013 19:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jpfuentes2/8117271 to your computer and use it in GitHub Desktop.
Save jpfuentes2/8117271 to your computer and use it in GitHub Desktop.
Clojure example of lightweight data modelling - based on https://gist.github.com/amontalenti/8114383
(doseq [item '(1 2 3 4)]
(println item))
(doseq [[k v] {:ST "started", :IP "in progress", :DN "done"}]
(println (str k " => " v)))
@amontalenti
Copy link

Thanks, I took your gist as a starting point and created this one instead, which I think maps closer to the original Java example. https://gist.github.com/amontalenti/8117294

@jpfuentes2
Copy link
Author

Np! I responded on your Clojure gist.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment