mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-18 21:29:19 +02:00
9 lines
152 B
Scheme
9 lines
152 B
Scheme
|
|
(let ((a 3)
|
|
(b 5))
|
|
(let ((c (- a 2))
|
|
(d (+ b 2))
|
|
(e 10000))
|
|
(write (+ e (* c 1000) (* a 100) (* b 10) d))
|
|
(newline)))
|
|
|