~/src/www.mokhan.ca/xlgmokha [main]
cat public-class-jollyjumper.md
public-class-jollyjumper.md 1267 bytes | 2007-09-14 00:00
symlink: /opt/dotnet/public-class-jollyjumper.md

Public Class JollyJumper

I was digging through some of the logs for my website and I noticed a referral from Google for the search term “Public Class JollyJumper”.

So I thought I might quickly define said class…

public class JollyJumper : IJollyJumper
{
  public void Jump()
  {
    ++_happiness;
  }

  public override string ToString()
  {
    return _happiness.ToString();
  }

  private int _happiness;
}