Class: Translator

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

Instance Method Summary collapse

Constructor Details

#initialize(lang) ⇒ Translator

Returns a new instance of Translator.



2
3
4
# File 'lib/hola/translator.rb', line 2

def initialize(lang)
  @lang = lang
end

Instance Method Details

#hiObject



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

def hi
  case @lang
  when "japanese"
    "konnichiwa"
  else
    "hello world"
  end
end