Automated Santa 0.1

Dec 25, 2007 02:02


/*
* Automated santa
* Version: 0.1
*
* http://blog.tengutech.net/2007/12/25/automated-santa-01/
*
*/

#include
#include

char[][] children;
char[] child;

children = populateChildren();

foreach (child in children)
{
merryChristmas(child);

if (isBad(child))
noPresent(child);
else if (isGood(child))
givePresent(child);
else
logException(child, "Christmas limbo");
}
Previous post Next post
Up