Class: Header_Format::Format
- Inherits:
-
Object
- Object
- Header_Format::Format
- Defined in:
- lib/header_format/format.rb
Instance Method Summary collapse
- #hi ⇒ Object
-
#initialize(language) ⇒ Format
constructor
A new instance of Format.
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
#hi ⇒ Object
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 |