Mercurial > hg > soundsoftware-site
view test/fixtures/files/060719210727_source.rb @ 784:4b46e861a43a cannam
Layout tweaks
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Fri, 18 Nov 2011 16:12:25 +0000 |
parents | 513646585e45 |
children |
line wrap: on
line source
# The Greeter class class Greeter def initialize(name) @name = name.capitalize end def salute puts "Hello #{@name}!" end end