> Also - I'm a bit worried as the message suggests that Clojure won't > support int and float primitives for some purposes - which are pretty > essential for Java interop - surely that can't be true? Or is this > just a temporary thing during the Alpha development?
longs and doubles will be the default number types in Clojure starting with version 1.3. Clojure will still allow ints and floats, but only for the purpose of Java interop. You'll need to explicitely convert to int or float when you need it for interop, and I don't remember the recommended way to do this. Rich Hickey discussed these issues in one of his Clojure Conj presentations. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en
