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;
}