# File karel/philosopher.rb, line 29
 def eat(time)
    # userPause("eat");
    time.times do
      move()
      back_up()
    end
  end