aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorGravatar Peter McGoron 2025-08-05 18:20:28 -0400
committerGravatar Peter McGoron 2025-08-05 18:20:28 -0400
commitf36f61cb4ab68285b2ba4a230f312843e4faf885 (patch)
tree32fd2958c18c54c875171bf177217b2d44dd06cf /README.md
parentadd adjustable value rewriter (diff)
Support Foment
Foment had some peculiarities: 1. Parameterize objects are initialized with the objects themselves at some point, which broke the previous code. 2. Foment cannot discard multiple value returns in some scenarios.
Diffstat (limited to '')
-rw-r--r--README.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/README.md b/README.md
index 9d00465..8067893 100644
--- a/README.md
+++ b/README.md
@@ -185,3 +185,17 @@ Multi-threaded implementations must export an SRFI-18 compatible
interface for mutexes. Single threaded implementations can use the
`compat.single-threaded.sld` (`compat.single-threaded.sls` for R6RS)
implementations.
+
+## Instructions Per Implementation
+
+### CHICKEN
+
+Just run `chicken-install conspire`.
+
+### Foment
+
+You will need `srfi-225`. The [reference implementation][SRFI-225] will
+work out of the box. Test bodies cannot return multiple values.
+
+[SRFI-225]: https://github.com/scheme-requests-for-implementation/srfi-225
+