Automated Santa 0.1

/*
 * Automated santa
 * Version: 0.1
 *
 * http://blog.tengutech.net/
 *
 */

#include <seasons_greetings.h>
#include <children.h>

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");
}
This entry was posted in Humor, Tech. Bookmark the permalink.

2 Responses to Automated Santa 0.1

  1. Kat says:

    *deep voice* How low can you go?!

  2. Leefe says:

    “Christmas limbo” is standing in a queue waiting to sit on Santa’s lap and tell him what you want for Christmas, where the line seems to progress, but you never get to the end. Think big department store in the last days before Christmas.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.