2 lines
120 B
Scheme
2 lines
120 B
Scheme
(define my-dict '((a b) (1 hello) ("c" (a b c)))
|
|
(assoc 'a my-dict) ; evaluates to '(a b)
|