[
^ CSE 341
|
section index
|
<-- previous
|
next -->
]
let, let*
(define x 1) (define y 2) (let ((x 3) (y x)) (+ x y)) (let* ((x 3) (y x)) (+ x y))
Last modified: Wed Apr 5 23:11:17 PDT 2000