December 2014
Beginner
336 pages
7h 41m
English
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 ...
Read now
Unlock full access