Returns true if x is a future
user=> (def f (future (inc 0))) #'user/f user=> (future? f) true user=> (future? 1) false
Takes a body of expressions and yields a future object that will invoke the body in another thread...
future?