mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
9 lines
155 B
Scheme
9 lines
155 B
Scheme
(import (scheme base)
|
|
(scheme file))
|
|
|
|
(with-output-to-file
|
|
"test.out"
|
|
(lambda ()
|
|
(write 'hello)
|
|
(display " ")
|
|
(display 'world)))
|