puts "buona notte"
Inviato: mer apr 27, 2011 11:35 pm
class Greeter
attr_reader :recipient
def initialize(recipient)
@recipient = recipient
end
def greet
puts "buona #{recipient}"
end
end
greeter = Greeter.new("notte")
greeter.greet

attr_reader :recipient
def initialize(recipient)
@recipient = recipient
end
def greet
puts "buona #{recipient}"
end
end
greeter = Greeter.new("notte")
greeter.greet
