Skip to content

Instantly share code, notes, and snippets.

@shelling
Created August 14, 2014 12:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shelling/12529b954bd8d096c0b1 to your computer and use it in GitHub Desktop.
Save shelling/12529b954bd8d096c0b1 to your computer and use it in GitHub Desktop.
(setq h (make-hash-table :test 'equal))
(message "%s" h)
(puthash 'hello "world" h)
(message "%s" h)
(message "%s" (gethash 'hello h))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment