If it turns out that you just need a list of your data tables, you can do this:
(= tables* (list my-data-table-1 my-data-table-2)) (def load-ordered-tables () (each current-table tables* (pr (vals current-table))))
arc> temp-table #hash((0 . (0 hUv086uP)) (1 . (1 CH3w2sdp))) arc> ((temp-table 1) 1) CH3w2sdp (= CH3w2sdp (table)) (= (CH3w2sdp 'run) 'fast) (= (CH3w2sdp 'walk) 'slow) (def thad () (eval `(vals ,((temp-table 1) 1)))) arc>(thad) (slow fast)
-----