Skip to content

Instantly share code, notes, and snippets.

@fogus
Created March 6, 2025 15:15
Show Gist options
  • Save fogus/a7e9445fdc89c77d8d5ee4d8ad187c38 to your computer and use it in GitHub Desktop.
Save fogus/a7e9445fdc89c77d8d5ee4d8ad187c38 to your computer and use it in GitHub Desktop.
:async-259
(System/setProperty "clojure.core.async.go-checking" "true")
(Boolean/getBoolean "clojure.core.async.go-checking")
(require '[clojure.core.async :as async])
(require '[clojure.core.async.impl.dispatch :as d])
@#'clojure.core.async.impl.go/go-checking
(let [c (async/chan 1)]
(async/go (async/>!! c 100)))
(macroexpand-1 '(async/go (async/>!! (async/chan 1) 100)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment