summaryrefslogtreecommitdiff
path: root/test/manual/indent/scheme.scm
blob: 9053a8743e47b192be1285cbf28fb80a8084a935 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
;; Testing sexp-comments

(define a #;(hello) there)

(define a #;1 there)

(define a #;"asdf" there)

(define a ;; #;(hello
  there)

(define a #;(hello
  there) 2)

(define a #;(hello
     #;(world))
        and)
  there) 2)

(define a #;(hello
     #;"asdf" (world
        and)
  there) 2)