On Mon, Mar 25, 2013 at 8:22 AM, Ben Wolfson <wolf...@gmail.com> wrote:
> On Mon, Mar 25, 2013 at 8:05 AM, Jim foo.bar <jimpil1...@gmail.com> wrote:
>>
>> Since Clojure prefers longs to ints and since I'm not using any type hints,
>> I don't understand why I get an integer overflow...
>
> In the traceback I get for this:
> (take 94 (lazy-seq (cons 0 (lazy-seq (cons 1 (map + fibs (rest fibs)))))))

derp, this won't work. Replace with

user> (def fibs (lazy-seq (cons 0 (lazy-seq (cons 1 (map + fibs (rest
fibs)))))))
#'user/fibs
user> (take 94 fibs)
ArithmeticException integer overflow
clojure.lang.Numbers.throwIntOverflow (Numbers.java:1388)

-- 
Ben Wolfson
"Human kind has used its intelligence to vary the flavour of drinks,
which may be sweet, aromatic, fermented or spirit-based. ... Family
and social life also offer numerous other occasions to consume drinks
for pleasure." [Larousse, "Drink" entry]

-- 
-- 
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
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to