Created
March 6, 2025 15:15
-
-
Save fogus/a7e9445fdc89c77d8d5ee4d8ad187c38 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
: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