Class: DlrowOlleh::Translator
- Inherits:
-
Object
- Object
- DlrowOlleh::Translator
- Defined in:
- lib/dlrow_olleh/translator.rb
Instance Method Summary collapse
-
#initialize(language) ⇒ Translator
constructor
A new instance of Translator.
- #say ⇒ Object
Constructor Details
#initialize(language) ⇒ Translator
Returns a new instance of Translator.
2 3 4 |
# File 'lib/dlrow_olleh/translator.rb', line 2 def initialize(language) @language = language end |
Instance Method Details
#say ⇒ Object
6 7 8 9 10 11 12 13 |
# File 'lib/dlrow_olleh/translator.rb', line 6 def say case @language when :finnish "Terve, Maailma!" else "Hello, World!" end end |