mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-18 21:29:19 +02:00
8 lines
92 B
Scheme
8 lines
92 B
Scheme
|
|
(let ((a 1000))
|
|
(define b (+ a 3))
|
|
(write a)
|
|
(display " ")
|
|
(write b)
|
|
(newline))
|
|
|