Maxime Devos <maximede...@telenet.be> writes: > Christine Lemmer-Webber schreef op wo 09-02-2022 om 10:18 [-0500]: >> We had: >> >> #:use-module (srfi args-fold) >> #:use-module (srfi streams) >> #:use-module (srfi tests)) > > The RnRS reserved the (srfi ...) namespace for the SRFI process,
I don't know off-hand if that's true, but it's a good idea... > possibly adding our own names here would be against the standard. ...and not a problem. Pick a new name for your new thing. >> #:use-module (guile-srfi args-fold) >> #:use-module (guile-srfi streams) >> #:use-module (guile-srfi tests)) That's just as easy to follo9w, and you know what this meains: >> #:use-module (chicken-srfi lazy-streams) >> #:use-module (s48-srfi tests)) and you know where to put any little thing needed to translate s48 tests to guile tests if inconsistencies are found. -- Keith