home *** CD-ROM | disk | FTP | other *** search
- 3.3.1 Comment Statements
-
- # is the comment statement sign.
- You can add comments into a line, or even produce a single
- line which is entirely a comment, by preceding the comment sign with #.
- For example:
- # This is my program
- 3 + 4 # My first calculation
-
- Comments make your calculations more understandable, whether you
- are making a printed record of what you are doing or if you just
- want to jot some notes to yourself while you are working.
-