![]() |
Using Dr. RacketCS 3540 Programming Languages
|
The following are helpful hints for using Dr. Racket for coursework and for homework assignments. These pointers apply to most Scheme interpreters and IDEs.
Comments are intended primarily for code in files. If you type a comment during an interactive session, the interpreter will require you to follow up with a valid expression, even if you had typed one on the line before your comment. For example:
> 12 ;; comment 13 ;; comment 14 12 13 14