To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / test / fixtures / files / 060719210727_source.rb @ 441:cbce1fd3b1b7

History | View | Annotate | Download (143 Bytes)

1
# The Greeter class
2
class Greeter
3
  def initialize(name)
4
    @name = name.capitalize
5
  end
6

    
7
  def salute
8
    puts "Hello #{@name}!" 
9
  end
10
end