racket/collects/srfi/41/primitive.rkt
Matthew Flatt e652546bf5 add streams to `racket'
- rename old `racket/stream' to `racket/sequence', and adjust
   to avoid stateful iterations
 - add a new `racket/stream' library with a `strean-cons' that is based
   on SRFI 41
 - adjust `for' and some sequence constructors like `in-range' to
   work more directly with streams
2011-03-18 19:05:23 -06:00

5 lines
108 B
Racket

#lang racket/base
(require racket/private/stream-cons)
(provide (all-from-out racket/private/stream-cons))