Chez Scheme provides some (mandatory) IEEE Scheme procedures in its ieee environment only prefixed with r6rs, as can be seen from the transcript at the bottom.
The same bug shows up when using the standard R6RS library function scheme-report-environment:
Chez Scheme Version 10.1.0-pre-release.2
Copyright 1984-2024 Cisco Systems, Inc.
> (eval '(< 1 2) (scheme-report-environment 5))
Exception: attempt to reference unbound identifier <
> (eval '(r6rs:< 1 2) (scheme-report-environment 5))
> #t
Chez Scheme provides some (mandatory) IEEE Scheme procedures in its
ieee
environment only prefixed withr6rs
, as can be seen from the transcript at the bottom.The same bug shows up when using the standard R6RS library function
scheme-report-environment
: