-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathbinding_test.ss
48 lines (37 loc) · 886 Bytes
/
binding_test.ss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
(let ((x 2) (y 3)) (* x y))
(let ((x 2) (y 3))
(let ((x 7) (z (+ x y)))
(* z x)))
(begin
(define a 5)
(let ((a 10) (b a))
(- a b)))
(letrec ((x 2) (y 3)) (* x y))
(letrec ((x 2) (y 3))
(letrec ((x 7) (z (+ x y)))
(* z x)))
(define x 5) (letrec ((x 3) (y 5)) (+ x y)) x
(begin (define a 5) (letrec ((a 10) (b a)) (- a b)))
(letrec ((even?
(lambda (n)
(if (= 0 n)
#t
(odd? (- n 1)))))
(odd?
(lambda (n)
(if (= 0 n)
#f
(even? (- n 1))))))
(even? 88))
(let* ((x 2) (y 3))
(* x y))
(let* ((x 2) (y 3))
(let ((x 7) (z (+ x y)))
(* z x)))
(let* ((x 2) (y 3))
(let* ((x 7) (z (+ x y)))
(* z x)))
(begin
(define a 5)
(let* ((a 10) (b a))
(- a b)))