We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 836f050 commit 98d9b17Copy full SHA for 98d9b17
1 file changed
www/midterms/2.scrbl
@@ -220,12 +220,12 @@ This program should yield an error - we're still using static scoping!
220
@#reader scribble/comment-reader
221
(racketblock
222
(begin
223
- (define (f x) (let ((x 42)) 42))
+ (define (f x) (let ((x 42)) x))
224
(f 17))
225
)
226
227
This example should yield 42, the let in the body of f shadows the
228
-argument.
+argument.
229
230
231
0 commit comments