AFAICT Chez Scheme's fluid-let is compatible with SRFI 15. In that case, this would be a compliant implementation of the latter:
(library (srfi :15)
(export fluid-let)
(import (only (chezscheme) fluid-let)))
The SRFI also supplied a portable implementation using dynamic-wind.
AFAICT Chez Scheme's
fluid-letis compatible with SRFI 15. In that case, this would be a compliant implementation of the latter:The SRFI also supplied a portable implementation using
dynamic-wind.