The ipython
python shell has a wonderful feature, whereby you can type:
foo??
and see the text of function foo
.
Does scheme (in particular, MIT scheme), have anything like this?
I want to be able to say
(define (foo x) (* x x))
and later view (or even operate on) the list (* x x)
.
Is there a way to do this?