I realize that Clojure specifically chose to not have continuations.
I am currently playing with ClojureScript.
I notice that in JavaScript's AJAX call protocol, I often pass a function to handle "what to do after the AJAX call returns."
This sounds very much like a continuation.
Is there some standard way to setup CPS in ClojureScript?
If not, what is the right way to handle AJAX call backs?
Thanks!