The Stressed Listener
Thursday, April 16, 2009 1:43One of the most hillarious code segments I have come across in recent times..
public class StressedListener implements PeopleListener {
Stack<Toffee> myToffees;
public void doListen(Person someone) {
try{
someone.wontShutUp();
} catch (OMGCantStandItException ex) {
while(someone.isMouthMoving()) {
someone.feed(myToffees.pop());
}
} finally {
self.enjoyPeaceAndQuiet();
}
}
}
No related posts.
You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.
Ankesh says:
April 19th, 2009 at 09:46
good one!