huangzworks / SICP-answers

我的 SICP 解题集

Home Page:http://sicp.readthedocs.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

练习 3.37

felix021 opened this issue · comments

37-cv.scm里的cv给忘了贴出来啦。。。

"""
(define (cv x)
(let ((c (make-connector)))
(constant x c)
c))
"""