summaryrefslogtreecommitdiff
path: root/test-suite/vm/t-quasiquote.scm
blob: 08e306c39a7ccdf1a374a3a0113b16df2876a22f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
(list
  `()
  `foo
  `(foo)
  `(foo bar)
  `(1 2)
  (let ((x 1)) `,x)
  (let ((x 1)) `(,x))
  (let ((x 1)) ``(,x))
  (let ((head '(a b))
        (tail 'c))
    `(,@head . ,tail)))