diff options
| author | 2025-08-08 10:42:27 -0400 | |
|---|---|---|
| committer | 2025-08-08 10:42:27 -0400 | |
| commit | 44433f42f14eb0c86b87555710c3d950dd300099 (patch) | |
| tree | 6bacee719592db24f6e86ec2818ab06bd01429db /examples-src | |
| parent | update README.md (diff) | |
rationalize packages, add foment
Diffstat (limited to 'examples-src')
| -rw-r--r-- | examples-src/hello-world/hello-world.sld | 6 |
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 |
