RosettaCodeData/Task/Hello-world-Text/Scheme/hello-world-text-4.ss

5 lines
81 B
Scheme
Raw Permalink Normal View History

2015-02-20 00:35:01 -05:00
(import (scheme base)
(scheme write))
2015-11-18 06:14:39 +00:00
(display "Hello world!")
2015-02-20 00:35:01 -05:00
(newline)