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