>> to be imported from a module. >> So I'd wish to be able to load modules in the following manner: >> >> (use-modules ((rnrs) #:version (6) #:without (write display))) > > Although it is not documented, there's a way to do this: > > (use-modules ((rnrs) #:version (6) #:hide (write display)))
Thanks a lot, that's just what I needed!