callable-data-structures added by mario-goulart on Wed Dec 4 22:47:32 2013
(use callable-alists callable-hash-tables) (define a (make-callable-alist '())) (set! (a 'foo) 42) (print "foo (alist) = " (a 'foo)) (define ht (make-callable-hash-table '())) (set! (ht 'foo) 42) (print "foo (hash table) = " (ht 'foo))