G@MeF@Ce
![]() | ||
CD3DF5

"Comments" are lines or blocks in the script that are bypassedand are not processed as part of the programming.
Good use of comments reflects great programming. Starting with the script title, version information, credits, instructions, to lines that separate class and methods down to the key notes.
In this lesson you will learn the two ways to make comments:
1.) line comments
To make a line comment in Ruby, simply use the pound sign
- Code:
#
(a.k.a. the octothorpe, the hash, the number sign, or the square)
All syntax from the "#" to the end of the line is ignored when the program runs.
for example:
- Code:
# everything after the number sign on this line will be bypassed
2.) block comments
to comment multiple lines or to create a comment block start with
- Code:
= begin
place your commentary, then end the block with
- Code:
= end
for example:
- Code:
=begin
everything in between will become a commentary
=end
The color Green will indicate code that is being commented.
that's it! easy right? ^,^























































