cljrs-stdlib 0.1.14

Built-in standard library namespaces for clojurust (clojure.string, clojure.set, clojure.test, …)
Documentation
1
2
3
4
5
6
;; clojure.core.async -- asynchronous operations via CSP
(ns clojure.core.async)

(defmacro go
  [& body]
  (list (list 'enter-async) 'try body (list 'finally (list 'exit-async))))