006-comment.scm (423B)
1 ; A comment at top of file. 2 ;; double-semicolon, ignored. 3 4 ; Full-line comment between top-level forms (no form on this line). 5 (define x 17) 6 ; Another full-line comment between two top-level forms. 7 (define y x) ; trailing comment after a complete top-level form 8 (sys-exit ; trailing comment after head 9 ; another full-line comment between args 10 y) ; trailing tail 11 ; Trailing line-comment as the last content of the file.