I am looking at some code in Scheme from Festival and cannot seem to figure out the comments. Currently, I can see ;, ;; and ;;; used to indicate comment lines. Other sources on the web indicate that some of the above maybe ways to indicate multi-line comments. My questions are:
- What is the difference between
;,;;and;;;for commenting? - When is one to be used over the other?
- Is there any other, IMO saner, way to comment code in
Scheme?