我尝试运行以前使用 guile 运行的策略方案脚本。我注意到 gambit 失败了,因为它缺少“格式”功能。
格式不是方案的一部分吗?
(format #t "example(~a)=<~a>\n" i (example i))
相反,我将我的 gambit 脚本修改为以下内容。
(display (string-append "example(" (number->string i) ")=<" (number->string (example i)) ">\n"))
我在这里想念什么?谢谢。