This Web
Other Webs
Schematics
Scheme Links
hash-table-get
(define (hash-table-get-example) (let ((example-hash-table (make-hash-table 'equal))) (hash-table-put! example-hash-table "key1" "value1") (hash-table-put! example-hash-table "key2" "value2") (hash-table-put! example-hash-table "key3" "value3") (hash-table-get example-hash-table "key2")))
> (hash-table-get-example) "value2"
'equal
make-hash-table