Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
很抱歉,第一次使用scheme,又遇到了个比较低级的问题。为了在本地测试完成的scheme代码,我使用的是vsc配合chicken解释器。
在goldfish/goldfish/srfi/srfi-132.scm中,使用了(define-library (srfi srfi-132)) 定义了模块 (srfi srfi-132)。在我编写的goldfish/tests/goldfish/srfi/srfi-132-test.scm中,在(import (srfi srfi-132))时出现了错误,报错显示“cannot import from undefined module: srfi.srfi-132”。
观察goldfish/tests/goldfish/srfi/下的其他代码,如试运行srfi-78-test.scm时,也遇到了相同问题。
请问这是怎么回事,我该如何解决呢