summaryrefslogtreecommitdiffstats
path: root/tests/012/ashwin.tl
blob: 66226f2cff7e9e4a109f22ddf45cf82b2b52bfef (plain)
1
2
3
4
5
6
7
8
(load "../common")

(defvarl a-list '((a . 42) (b . 73)))
(defvarl key 'a)

(test (cdr (assq key a-list)) 42)
(test (cdr (assq 'b a-list)) 73)
(test (cdr (assq 'c a-list)) nil)