bakmon/skeleton/hello.scm
2025-08-08 01:18:40 +02:00

6 lines
111 B
Scheme

(define-module (skeleton hello)
#:export (hello-world))
(define (hello-world)
(display "Hello, World!"))