Class: Hello

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

Class Method Summary collapse

Class Method Details

.hi(arg) ⇒ Object



6
7
8
9
# File 'lib/hello.rb', line 6

def self.hi(arg)
  puts arg
  return arg
end

.talk(lang = :en) ⇒ Object



11
12
13
14
# File 'lib/hello.rb', line 11

def self.talk(lang = :en)
  transf = Translator.new(lang)
  transf.transf
end