annotate test/fixtures/files/060719210727_source.rb @ 1216:05ce7de07fef cannam

Remove temporary notice about relocation of My Projects
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Tue, 12 Mar 2013 10:30:38 +0000
parents 513646585e45
children
rev   line source
Chris@0 1 # The Greeter class
Chris@0 2 class Greeter
Chris@0 3 def initialize(name)
Chris@0 4 @name = name.capitalize
Chris@0 5 end
Chris@0 6
Chris@0 7 def salute
Chris@0 8 puts "Hello #{@name}!"
Chris@0 9 end
Chris@0 10 end