Skip to content

Instantly share code, notes, and snippets.

@shelling
Created August 14, 2014 12:47
Show Gist options
  • Select an option

  • Save shelling/12529b954bd8d096c0b1 to your computer and use it in GitHub Desktop.

Select an option

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