Class: Food::Egg

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

Class Method Summary collapse

Class Method Details

.buy(type) ⇒ Object



3
4
5
6
7
8
9
# File 'lib/food/food.rb', line 3

def self.buy(type)
  if type == 1
    "Big"
  else
    "Small" 
  end
end