In JavaScript, I can get the definition of the function "source code", for example:
function alert_Hi() {
alert("Hi");
}
alert(alert_Hi);
will return exactly what I typed. http://jsfiddle.net/DuCqJ/
How to do this in a MIT circuit?
I remember that I saw something that returns #compound-procedureor something like that, but I really want it to be "source code".
source
share