Class: Rbgms::Translator

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

Instance Method Summary collapse

Constructor Details

#initialize(language) ⇒ Translator

Returns a new instance of Translator.



3
4
5
6
7
# File 'lib/rbgms0/translator.rb', line 3

def initialize(language)

@language = language

end

Instance Method Details

#hiObject



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/rbgms0/translator.rb', line 9

def hi

case @language

when "spanish"

"hola mundo"

else

"hello world"

end

end