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