| Hi, Just wondering if it's possible to make table pointers that may help make
my code more readable ? arc> (= parent* (obj thing* (obj this "that")))
#hash((thing* . #hash((this . "that"))))
so instead of doing this: (fill-table (parent* thing*) (list 'more "that"))
I'd like to do something like: (point mything* (parent* thing*))
(fill-table mything* (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.Thanks,
T. |