diff options
Diffstat (limited to 'test/manual/indent/scheme.scm')
-rw-r--r-- | test/manual/indent/scheme.scm | 32 |
1 files changed, 23 insertions, 9 deletions
diff --git a/test/manual/indent/scheme.scm b/test/manual/indent/scheme.scm index 84d0f6d8786..9053a8743e4 100644 --- a/test/manual/indent/scheme.scm +++ b/test/manual/indent/scheme.scm @@ -1,9 +1,23 @@ -#!/usr/bin/scheme is this a comment? - -;; This one is a comment -(a) -#| and this one as #|well|# as this! |# -(b) -(cons #;(this is a - comment) - head tail) +;; 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) |