Class: LcraTest
- Inherits:
-
Object
- Object
- LcraTest
- Defined in:
- lib/lcra_test.rb
Class Method Summary collapse
-
.hi(language) ⇒ Object
Say hi to the world!.
Class Method Details
.hi(language) ⇒ Object
Say hi to the world!
Example:
>> LcraTest.hi("spanish")
=> hola mundo
Arguments:
language: (String)
14 15 16 17 |
# File 'lib/lcra_test.rb', line 14 def self.hi(language) translator = Translator.new(language) translator.hi end |