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

3 lines
76 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(setq my-table (make-hash-table :test 'equal))
(puthash "key" 123 my-table)