gpt4 book ai didi

scheme - 如何在 MIT Scheme 中获取我的函数定义?

转载 作者:行者123 更新时间:2023-12-02 02:20:42 24 4
gpt4 key购买 nike

在 JavaScript 中,我可以检索函数的“源代码”定义,例如:

​function alert_Hi() {
alert("Hi");
}

alert(alert_Hi);

将准确返回我输入的内容。 http://jsfiddle.net/DuCqJ/

如何在 MIT 计划中做到这一点?

我记得看到一些返回#compound-procedure之类的东西,但我真正想要的是“源代码”。

最佳答案

你可以尝试一下

(define (display-hi) (display "Hi"))
(pp display-hi) =>
(named-lambda (display-hi)
(display "Hi"))

MIT-Scheme debugging aids

关于scheme - 如何在 MIT Scheme 中获取我的函数定义?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12129581/

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