Class: Holllla::Translator

Inherits:
Object
  • Object
show all
Defined in:
lib/holllla/translator.rb

Instance Method Summary collapse

Constructor Details

#initialize(language) ⇒ Translator

Returns a new instance of Translator.



3
4
5
# File 'lib/holllla/translator.rb', line 3

def initialize(language)
  @language = language
end

Instance Method Details

#hiObject



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

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