In the book(Structure and Interpretation of Computer Programs section 3.52, Chinese Version) ,we use code:
(define ones (cons-stream 1 ones))
to define a infinite stream of one.
But when I ran this, I got a Unbound variable: ones
error.
Why? Did I miss something?