本文介绍了如何在MIT计划中获取我的功能定义?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在JavaScript中,我可以检索函数的源代码"定义,例如:
In JavaScript, I can retrieve the "source code" definition of a function, for example:
function alert_Hi() {
alert("Hi");
}
alert(alert_Hi);
将完全返回我输入的内容. http://jsfiddle.net/DuCqJ/
will return exactly what I typed. http://jsfiddle.net/DuCqJ/
如何在MIT计划中做到这一点?
How can I do this in MIT Scheme?
我记得看到了返回#compound-procedure
的东西,但是我真正想要的是源代码".
I remember seeing something that returns #compound-procedure
or something, but what I really want is the "source code".
推荐答案
您可以尝试pp
(define (display-hi) (display "Hi"))
(pp display-hi) =>
(named-lambda (display-hi)
(display "Hi"))
这篇关于如何在MIT计划中获取我的功能定义?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!