|  | Hi, Just wondering if it's possible to make table pointers that may help make 
my code more readable ? so instead of doing this:    arc> (= parent* (obj thing* (obj this "that")))
    #hash((thing* . #hash((this . "that"))))
 I'd like to do something like:     (fill-table (parent* thing*) (list 'more "that"))  
 Note: The above example doesn't make it more readable, but a more complex function is using a few tables, each nested a few deep, really shows the problem.     (point mything* (parent* thing*))
     (fill-table mything* (list 'more "that"))
 Thanks,
T. |