about summary refs log blame commit diff stats
path: root/chibi/hash.scm
blob: f9a2f33d43969b667f9cd946670520d065d023fd (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                 
(import (scheme base)
	(scheme write)
	(srfi 69))

(define names 
	(make-hash-table eq?))

(hash-table-set! names 'jmc "John McCarthy")
(hash-table-set! names 'gjs "Gerald Jay Sussman")

(display 
	(hash-table-keys names))