Method: Hack01::Translator#hi

Defined in:
lib/hack01/translator.rb

#hiObject



6
7
8
9
10
11
12
13
14
15
# File 'lib/hack01/translator.rb', line 6

def hi
  case @language
  when "spanish"
    "hola mundo"
  when "australian"
    "g'day cobbers"
  else
    "hello world"
  end
end