Exercise 2. Comments and Pound Characters

Comments are very important in your programs. They are used to tell you what something does in English, and they are used to disable parts of your program if you need to remove them temporarily. Here’s how you use comments in Ruby:

ex2.rb

 1    # A comment, this is so you can read your program later.  2    # Anything after the # is ignored by ruby.  3  4    puts "I could have code like this." # and the comment after is ignored  5  6    # You can also use a comment to "disable" or comment out a piece of code:  7    # puts "This won't run."  8  9    puts "This will run."

From now on, I’m going to write code like this. It is important for you to understand that everything does ...

Get Learn Ruby the Hard Way: A Simple and Idiomatic Introduction to the Imaginative World of Computational Thinking with Code, Third Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.