aboutsummaryrefslogtreecommitdiffstats
path: root/examples-src/hello-world/hello-world.sld
blob: 234a5930d3bd54a4032b04d0c9a7f6ce3afdd458 (plain) (blame)
1
2
3
4
5
6
(define-library (hello-world)
  (import (scheme base) (scheme write))
  (export hello-world)
  (begin
    (define (hello-world)
      (display "hello, world\n"))))