Class: Tradutor
- Inherits:
-
Object
- Object
- Tradutor
- Defined in:
- lib/ola/tradutor.rb
Instance Method Summary collapse
- #hi ⇒ Object
-
#initialize(language) ⇒ Tradutor
constructor
A new instance of Tradutor.
Constructor Details
#initialize(language) ⇒ Tradutor
Returns a new instance of Tradutor.
2 3 4 |
# File 'lib/ola/tradutor.rb', line 2 def initialize(language) @language = language end |
Instance Method Details
#hi ⇒ Object
6 7 8 9 10 11 12 13 |
# File 'lib/ola/tradutor.rb', line 6 def hi case @language when "pt" "alô mundão" else "hello world" end end |