WhizzML Reference Manual

1.2 Whitespace and comments

Whitespace characters are spaces and newlines, and a semicolon ( ; ) indicates the start of a comment, which continues to the end of the line.

; this is a comment
;;; this too
(define a 3) ; starting at the semicolon, this is ignored
(define b (+ 1 a)) ;; ditto