(setf h (make-hash-table)) (setf (gethash 'foo h) "hi") ;; -> "hi" (gethash 'foo h) ;; -> "hi" (gethash 'bar h "bye") ;; -> "bye"