aboutsummaryrefslogtreecommitdiffstats
path: root/examples-src
diff options
context:
space:
mode:
authorGravatar Peter McGoron 2025-08-08 10:42:27 -0400
committerGravatar Peter McGoron 2025-08-08 10:42:27 -0400
commit44433f42f14eb0c86b87555710c3d950dd300099 (patch)
tree6bacee719592db24f6e86ec2818ab06bd01429db /examples-src
parentupdate README.md (diff)
rationalize packages, add foment
Diffstat (limited to 'examples-src')
-rw-r--r--examples-src/hello-world/hello-world.sld6
1 files changed, 6 insertions, 0 deletions
diff --git a/examples-src/hello-world/hello-world.sld b/examples-src/hello-world/hello-world.sld
new file mode 100644
index 0000000..234a593
--- /dev/null
+++ b/examples-src/hello-world/hello-world.sld
@@ -0,0 +1,6 @@
+(define-library (hello-world)
+ (import (scheme base) (scheme write))
+ (export hello-world)
+ (begin
+ (define (hello-world)
+ (display "hello, world\n")))) \ No newline at end of file