Skip to content

Instantly share code, notes, and snippets.

@jebberjeb
Created November 24, 2013 05:20
Show Gist options
  • Save jebberjeb/7623661 to your computer and use it in GitHub Desktop.
Save jebberjeb/7623661 to your computer and use it in GitHub Desktop.
(ns testapp.core)
(def p (promise))
(.start (java.lang.Thread.
(fn []
(Thread/sleep 2000)
(deliver p "foozle")
(println "promise set"))))
(println @p " ...and we're done")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment