Details
Assignee
UnassignedUnassignedReporter
leonoelleonoelPatch
Code and TestPriority
Major
Details
Details
Assignee
Unassigned
UnassignedReporter
leonoel
leonoelPatch
Code and Test
Priority

Created October 16, 2018 at 1:38 PM
Updated January 10, 2020 at 4:13 PM
The following snippet fails because
<!
is outside ofgo
boundaries.(let [port (a/chan)] (a/go (letfn [(my-even? [n] (if (zero? n) true (my-odd? (dec n)))) (my-odd? [n] (if (zero? n) false (my-even? (dec n))))] (my-even? (a/<! port)))))
Async code in
letfn
body should be rewritten by thego
macro, given all bound functions can be properly initialized when the body starts.