Class: HelloExt::Test

Inherits:
Object
  • Object
show all
Includes:
Grammar
Defined in:
lib/hello_ext.rb

Instance Method Summary collapse

Methods included from Grammar

#bye, hello

Instance Method Details

#adios(name) ⇒ Object



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

def adios(name)
  bye(name)
end

#hola(name) ⇒ Object



8
9
10
# File 'lib/hello_ext.rb', line 8

def hola(name)
  "hola, " + hello(name)
end