Top Level Namespace

Instance Method Summary collapse

Instance Method Details

#lunchObject



1
2
3
4
5
6
7
8
9
10
11
12
# File 'lib/lunch.rb', line 1

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