RosettaCodeData/Task/Associative-array-Creation/Emacs-Lisp/associative-array-creation-2.l

3 lines
76 B
Text
Raw Permalink Normal View History

2015-02-20 00:35:01 -05:00
(setq my-table (make-hash-table :test 'equal))
(puthash "key" 123 my-table)