Method: MicoCard::Translator#hi

Defined in:
lib/mico_card/translator.rb

#hiObject



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

def hi
  case @language
  when "spanish"
    "hola mundo"
  else
    "hello world"
  end
end