Method: Hola::Translator#hi

Defined in:
lib/hola/translator.rb

#hiObject



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

def hi
  case @language
  when "spanish"
    "hola mundo"
  when "korean"
    "anyoung ha se yo"
  else
    "hello world"
  end
end