Okay, I have a bit of a problem.
I just downloaded the ruby program from
here, but I don't know what exactly to do. If I search for things named Ruby, this is what I get.

Which one do I run?
Also, I'm looking at the bookofruby.pdf, it's pretty confusing. I'll give you guys a snippet of it.\
RUNNING RUBY PROGRAMS
It is often useful to keep a command window open in the source directory containing your Ruby program files. Assuming that the Ruby interpreter is correctly pathed on your system, you will then be able to run programs by entering ruby <program name> like this: ruby 1helloworld.rb If you are using Ruby In Steel you can run the programs in the interactive console by pressing CTRL+F5 or run them in the debugger by pressing F5.
CHAPTER ONE
Strings, Numbers, Classes and Objects
The first thing to know about the Ruby language is that it’s easy to use. To prove this, let’s look at the code of the traditional ‘Hello world’ program. Here it is: 1helloworld.rb puts 'hello world'
That’s it in its entirety. One method, puts, and one string, ‘hello world’. No headers or class definitions, no import sections or ‘main’ functions. This really is as simple as it gets. Load up the code, 1helloworld.rb, and try it out.
GETTING AND PUTTING INPUT
Having ‘put’ a string to the output (here, a command window), the obvious next step is to ‘get’ a string. As you might guess, the Ruby method for this is gets. The 2helloname.rb prompts the user for his or her name – let’s suppose it’s ‚Fred‛ - and then displays a greeting: ‚Hello Fred‛. Here is the code: 2helloname.rb print( 'Enter your name: ' ) name = gets() puts( "Hello #{name}" )
While this is still very simple, there are a few important details that need to be explained. First, notice that I’ve used print rather than puts to display the...
[/tt]
Anyways, I try the first thing it says. I'm guessing I go to "Interactive Ruby"? This is what I get.

This is cool, I'm not sure if it's the right program.
I'm going to try some code, see if it works. By the looks of it, I can't have multi-lined code.