16 lines
253 B
Ruby
16 lines
253 B
Ruby
class RandomSalutation
|
|
|
|
def short
|
|
'Hi there!'
|
|
end
|
|
|
|
def medium
|
|
"Well hello! So nice to see you here."
|
|
end
|
|
|
|
def long
|
|
"My, what a wonderful day. Wouldn't you agree? I mean, it's even better now that you are here! Amirite?"
|
|
end
|
|
|
|
end
|