Code to Self

// handle allergic reactions
if (in(Stomach, Antibiotics.AMOXICILLIN))
{
    while (!empty(Stomach))
    {
        Stomach.pop(); // try LIFO
        if (!empty(Stomach))
        {
            Stomach.shift(); // then try FIFO
        }
    }
    Skin.getRegions('stomach', 'thigh').apply('rash');
}
Previous
DINcing with the Stars
Next
Glassbooth
Author
Shaun Inman
Posted
February 3rd, 2008 at 11:11 am
Categories
Personal