Name: Anonymous 2014-03-28 2:36
I don't find ``defining streams implicitly'' very readable. Is it because I'm not used to work with streams?
(define fibs
(cons-stream 0
(cons-stream 1
(add-streams (stream-cdr fibs)
fibs))))