suppose I have test.scm:<br><br>(define (foo ...) ...)<br>(define (bar ...) ...)<br>(define (yay ...) ...)<br><br>(some-magical-funcion) --> '(bar foo yay) # is this possible?<br><br>basically, I want to have some function I can call to get a list of all symbols defined in the current top level<br>