bakmon/skeleton/hello.scm

7 lines
111 B
Scheme
Raw Normal View History

2025-08-08 01:18:40 +02:00
(define-module (skeleton hello)
#:export (hello-world))
(define (hello-world)
(display "Hello, World!"))