gpt4 book ai didi

scheme - Chibi Scheme - 简单的定义库示例不起作用

转载 作者:行者123 更新时间:2023-12-04 18:12:36 26 4
gpt4 key购买 nike

我编写了以下示例,以尝试在 Chibi Scheme 0.5.3 中使用 R7RS 库:

(define-library (example hello)
(export hello-world)
(import (scheme base))
(begin
(define (hello-world) "hello, world")))

(import (scheme write)
(example hello))
(write (hello-world))

不幸的是,在执行时,它会生成有关 undefined variable 的错误:
$ chibi-scheme  hello.scm 
ERROR: undefined variable: hello-world

我一定是犯了一个简单的错误,但没有看到。有任何想法吗?

最佳答案

原来这是一个简单的错误 - 根据 Module System用户指南部分,文件名必须与模块名称匹配:

The definition of the module (foo bar baz) is searched for in the file "foo/bar/baz.sld".



所以在这种情况下需要将上面的库定义添加到 example/hello.sld并且需要将导入部分提取到新的 .scm文件(或 REPL 上的输入等)。

无论如何,一个微不足道的解决方案,但也许它会对那里的其他人有所帮助......

关于scheme - Chibi Scheme - 简单的定义库示例不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10439782/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com