Class: LMHD

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

Overview

The main LMHD class

Defined Under Namespace

Classes: Hello

Class Method Summary collapse

Class Method Details

.hi(language = nil) ⇒ Object

Say hi!

Example:

>> LMHD.hi( "groot" )
=> I AM GROOT

Arguments:

language: (String)


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

def self.hi(language=nil)
	hello = Hello.new( language )
	hello.hi
end