Below is first draft text of the first layout of the book. If you have suggestions or feedback, all comments will be considered as I work through this project. If you would like to see how this project progresses, sign up for my mailing list, and I will send out an email every now and then.
View the prior layout.
View the first layout.
View the next layout.
Big Bad Wolf: "Then I'll huff, and I'll puff, and I'll blow your house down."
bool BigBadWolf.BlowsHouse(Pig LittlePig)
{
//The Big Bad Wolf says “Then I’ll huff, and I’ll puff, and I’ll blow your house down.”
BigBadWolf.Says(“Then I’ll huff, and I’ll puff, and I’ll blow your house down.”);
//The Big Bad Wolf huffs and puffs.
BigBadWolf.HuffAndPuff();
//The Big Bad blows Little Pig Red’s house.
if(BigBadWolf.BlowsHouseDown(LittlePig))
{
//It is true. The Big Bad Wolf blows the straw house down.
return true;
}
else
{
return false;
}
}
No comments:
Post a Comment