I thought this was pretty cute... as I was digging through some of my logs for my site I noticed I got a referral from Google.

The search term was "Public Class JollyJumper"

So I thought I might quickly define said class...

 1     public class JollyJumper : IJollyJumper {
 2         public void Jump( ) {
 3             ++_happiness;
 4         }
 5 
 6         public override string ToString( ) {
 7             return _happiness.ToString( );
 8         }
 9 
10         private int _happiness;
11     }

If you don't know what a Jolly Jumper is hopefully the image helps...

jolly_jumper

comments powered by Disqus