if (!it.skin.apply(TheLotion))
{
it.HoseCount++;
};
More computer humor
another programmer trying to enhance his craft through information sharing and socialization
if (WorkQuantity == "All" && PlayQuantity == "None")
{
Jack.BoyType = BoyTypes.Dull;
};
BottlesOfBeerOnTheWall(new Wall(99));
public int BottlesOfBeerOnTheWall(Wall TheWall)
{
TheWall.BottlesOfBeer.TakeOneDown().PassItAround();
if (TheWall.BottlesOfBeer.Count > 0)
{
return BottlesOfBeerOnTheWall(TheWall);
}
return 0;
}