public TheAntsGoMarching()
{
// We'll pretend this index starts at 1.
string[] antActions = new string[10] {
"suck his thumb",
"tie his shoe",
"climb a tree",
"shut the door",
"take a dive",
"pick up sticks",
"pray to heaven",
"shut the gate",
"check the time",
"say 'THE END'"
};
for(int antIndex = 1; antIndex < 11; antIndex ++)
{
for(int marchingIndex = 0; marchingIndex < 2; marchingIndex++)
{
TheAntsGoMarching(antIndex + "by" + antIndex);
Hurrah(2);
}
TheAntsGoMarching(antIndex + "by" + antIndex);
TheLittleOneStopsTo(antActions[antIndex]);
AndTheyAllGoMarching("down to the ground, to get out of the rain");
for(int boomIndex = 0; boomIndex < 3; boomIndex++)
{
BOOM();
}
}
}
Tags: