jmh-clojure uberjar example

August 14, 2020 ยท View on GitHub

;; src/demo/core.clj

(ns demo.core (:require [clojure.core.async :as async]))

(defn blocking-put [ch] (async/>!! ch 42))

(defn blocking-take [ch] (async/<!! ch))