Comment on Clojure core.async and Go: A Code ComparisonparentComments−Tuna-Fish13yIt's a difference of the language. In the Go version, i is a mutable variable that can be read and written to. In Clojure, it's an immutable bound value. The i of one iteration is not in any way directly linked to the i of another iteration.−frou_dh13y"The Value of Values"
Comments
It's a difference of the language. In the Go version, i is a mutable variable that can be read and written to. In Clojure, it's an immutable bound value. The i of one iteration is not in any way directly linked to the i of another iteration.
"The Value of Values"