Top Level Namespace

Instance Method Summary collapse

Instance Method Details

#lunchObject



4
5
6
7
8
9
10
11
12
13
14
15
# File 'lib/lunch.rb', line 4

def lunch
  puts case Date.today.wday
      when 0 then 'pub'
      when 1 then 'pub'
      when 2 then 'pub'
      when 3 then 'pub'
      when 4 then 'Subway'
      when 5 then 'pub'
      when 6 then 'pub'
      else 'pub'  
  end  
end