Zebra0.com

alice helloComment

Comment

Comments start with //. Comments do not change the execution of the program, but are a very important tool for programmers. Comments are one way of documenting your code. Ideally, there should be a comment at the top of myFirstMethod giving your name and a description of the program. Each procedure, function or block of code should also have a comment.

Start with this project.


Text of video

In this video, we will add comments to our code.

Comments are ignored by the compiler, but are a way to add notes for ourselves or other programmers.

NEXT: Adding comments