Class: Hola::Translator
- Inherits:
-
Object
- Object
- Hola::Translator
- Defined in:
- lib/hola/translator.rb
Instance Method Summary collapse
- #hello ⇒ 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/translator.rb', line 2 def initialize(language) @language = language end |
Instance Method Details
#hello ⇒ Object
6 7 8 9 10 11 12 13 |
# File 'lib/hola/translator.rb', line 6 def hello case @language when 'spanish' "Hola, marshall. persona tonta." else "hello, marshall. foolish human." end end |