2007-06-22から1日間の記事一覧

遅延ストリーム

おつかれ気味なので、SICP勉強会用につくってる遅延ストリームをはってごまかす。10分程度でつくった代物。 (define-syntax cons-stream (syntax-rules() ((_ x y) (cons x (delay y))))) (define (stream-car stream) (car stream)) (define (stream-cdr st…