Class: Header_Format::Format

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

Instance Method Summary collapse

Constructor Details

#initialize(language) ⇒ Format

Returns a new instance of Format.



2
3
4
# File 'lib/header_format/format.rb', line 2

def initialize(language)
  @language = language
end

Instance Method Details

#hiObject



6
7
8
9
10
11
12
13
# File 'lib/header_format/format.rb', line 6

def hi
  case @language
  when "spanish"
    "hola mundo"
  else
    "hello world"
  end
end