We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae38c39 commit 9ab75d9Copy full SHA for 9ab75d9
references/sicp/instructors-manual/concrete-test.rkt
@@ -12,6 +12,11 @@
12
(check-equal? (EXTEND-ENVIRONMENT '(a b) '(1 2) '()) '(([a . 1] [b . 2])))
13
(check-equal? (EXTEND-ENVIRONMENT '() '() '()) '(()) )
14
15
+(check-equal? (EXTEND-ENVIRONMENT '(a b) '(1 2)
16
+ (EXTEND-ENVIRONMENT '(c d) '(3 4) '()))
17
+ '(((a . 1) (b . 2))
18
+ ((c . 3) (d . 4))))
19
+
20
(check-exn (regexp "Unbound variable 'x") (lambda ()
21
(LOOKUP-VARIABLE-VALUE 'x '())))
22
0 commit comments