Skip to content

Instantly share code, notes, and snippets.

@barbeque
Created July 6, 2017 21:08
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 barbeque/cce99033d76b60c6b9376cc8e699bb9a to your computer and use it in GitHub Desktop.
Save barbeque/cce99033d76b60c6b9376cc8e699bb9a to your computer and use it in GitHub Desktop.
Racket Hashtable cheat sheet
> (define myhash #hasheq((name . "bob")))
> (hash-has-key? myhash `name)
#t
> (hash-ref myhash `name)
"bob"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment