Class: Yaa

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

Overview

The main Yaa driver

Class Method Summary collapse

Class Method Details

.hi(person = "Jason") ⇒ Object

Say hi to the people!

Example:

>> Yaa.hi 'Jason'
=> Hello world Jason!

Arguments:

person: (string)


13
14
15
# File 'lib/yaa.rb', line 13

def self.hi (person = "Jason")
  "Hello world #{person}!"
end