| Hosted by CoCalc | Download
1
(+ 2 2)
2
3
(define var "goose")
4
;; Any reference to var here will be bound to "goose"
5
(let ((var 10))
6
;; statements go here. Any reference to var here will be bound to 10.
7
)
8
;; Any reference to var here will be bound to "goose"
9