标签: scheme
我在计划中使用let语法有什么问题?
错误:无法读取属性' car'未定义的
(define (test x) (let (a 1)) )
答案 0 :(得分:3)
正确的语法是:
(let ((a value1) (b value2)) exp)
你忘了一个空位。