7 lines
111 B
Scheme
7 lines
111 B
Scheme
|
(define-module (skeleton hello)
|
||
|
#:export (hello-world))
|
||
|
|
||
|
(define (hello-world)
|
||
|
(display "Hello, World!"))
|
||
|
|