> Clojurejs started by 
> [kriyative](https://github.**com/kriyative<https://github.com/kriyative>)
> is an amazing project that compile clojure to javascript.
>


This can hardly be called Clojure. The syntax may be similar, but the
semantics are all wrong.

>From boot.cljs

(defn map [fun arr]
  (loop [r []
         i 0]
    (if (< i (count arr))
      (do
        (.push r (fun (get arr i)))
        (recur r (+ i 1)))
      r)))

Map is no longer lazy?

Timothy

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to