Showing posts with label Pseudocode. Show all posts
Showing posts with label Pseudocode. Show all posts

Sunday, July 13, 2008

Silence of the Lambs


if (!it.skin.apply(TheLotion))
{
it.HoseCount++;
};


More computer humor

To be or not to be?


string TheQuestion = "2B || !2B";


More computer humor

All work and no play . . .


if (WorkQuantity == "All" && PlayQuantity == "None")
{
Jack.BoyType = BoyTypes.Dull;
};



More computer humor

Bottles of Beer on the Wall


BottlesOfBeerOnTheWall(new Wall(99));

public int BottlesOfBeerOnTheWall(Wall TheWall)
{
TheWall.BottlesOfBeer.TakeOneDown().PassItAround();

if (TheWall.BottlesOfBeer.Count > 0)
{
return BottlesOfBeerOnTheWall(TheWall);
}

return 0;
}



More computer humor