mirror of
https://github.com/helix-editor/helix
synced 2026-07-26 23:00:55 +02:00
10 lines
123 B
Scheme
10 lines
123 B
Scheme
(define (process items)
|
|
(fold-left + 0 items))
|
|
|
|
(let ((a 1)
|
|
(b 2))
|
|
(+ a b))
|
|
|
|
(display "first"
|
|
"second")
|