handball/src/test/run-pass/r7rs-spec/4-1-6-Assignments.scm

5 lines
60 B
Scheme
Raw Normal View History

2021-12-29 02:09:51 +00:00
(define x 2)
(display (+ x 1))
(set! x 4)
(display (+ x 1))