Class: Hola::Translator
- Inherits:
-
Object
- Object
- Hola::Translator
- Defined in:
- lib/hola_crwhitesides/translator.rb
Instance Method Summary collapse
- #hi ⇒ Object
-
#initialize(language) ⇒ Translator
constructor
A new instance of Translator.
Constructor Details
#initialize(language) ⇒ Translator
Returns a new instance of Translator.
2 3 4 |
# File 'lib/hola_crwhitesides/translator.rb', line 2 def initialize(language) @language = language end |
Instance Method Details
#hi ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/hola_crwhitesides/translator.rb', line 6 def hi case @language when"spanish" "Hola mundo!" when "russian" "Privet mir!" when "korean" "Annyeonghaseyo segye!" when "german" "Hallo welt!" when "italian" "Ciao mondo!" else "Hello world!" end end |