ORIGINAL

(defn update-positions [snake apple]
  (dosync
    (if (eats? @snake @apple)
      (do (ref-set apple (create-apple))
        (alter snake move :grow))
     (alter snake move)))
nil)


WITHOUT do

(defn update-positions [snake apple]
  (dosync
    (if (eats? @snake @apple)
      ((ref-set apple (create-apple))    <------ Removed "do" from
here
        (alter snake move :grow))
     (alter snake move)))
nil)


Both versions work, so why does the "do" on line 4 contribute?

-- 
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