Class: LcraTest

Inherits:
Object
  • Object
show all
Defined in:
lib/lcra_test.rb

Class Method Summary collapse

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