Class: Translator

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

Class Method Summary collapse

Class Method Details

.hi(lang) ⇒ Object



2
3
4
5
6
7
8
# File 'lib/gim/translator.rb', line 2

def self.hi(lang)
  if lang == "english"
    "Hello"
  else
    "Hola"
  end
end