JanetDocs
Playground
I'm feeling lucky
GitHub sign in
Run
Format
(let [c (ev/chan 2)] (ev/give c :one) (def first-check (ev/full c)) (ev/give c :two) (def second-check (ev/full c)) (ev/take c) (def third-check (ev/full c)) [first-check second-check third-check]) # => '(false true false)