Skip to Content
Ruby on Rails® for Microsoft Developers
book

Ruby on Rails® for Microsoft Developers

by Antonio Cangiano
April 2009
Intermediate to advanced content levelIntermediate to advanced
479 pages
12h 55m
English
Wrox
Content preview from Ruby on Rails® for Microsoft Developers

3.2. Hello, Ruby!

You have to start somewhere, so I won't break the tradition of using a Hello world program as the first example.

Place the following lines into a file called hello.rb as shown in Listing 3-1.

Example 3.1. Hello world in Ruby
# Saying hello the Ruby way
puts 'Hello, Ruby!'

To run this, execute ruby hello.rb from the command line. Not surprisingly, Ruby displays the string Hello, Ruby! as shown in Figure 3-1.

Figure 3.1. Figure 3-1

When working with single Ruby files on Windows, it is convenient to use the SciTE editor (shown in Figure 3-2 that gets installed with the One-Click Ruby Installer. By default, this is located in c:\ruby\scite\SciTE.exe. If you opt to do the same, press F5 to run the hello.rb program or reach for the Tools menu.

Figure 3.2. Figure 3-2

In its extreme simplicity, this example already offers grounds for a few important considerations.

You run your program by simply invoking the Ruby interpreter (aptly named ruby). Being an interpreted language, you didn't have to compile it first, obtain an executable, and then run it.

From the first line you can see how Ruby comments begin with a # character and continue for the rest of the line. You can also place comments in line with code:

puts 'Hello, Ruby!' # Saying hi from Ruby

When commenting ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Ruby on Rails™ 3 Tutorial: Learn Rails™ by Example

Ruby on Rails™ 3 Tutorial: Learn Rails™ by Example

Michael Hartl

Publisher Resources

ISBN: 9780470374955Purchase book