package org.teachingkidsprogramming.section06modelviewcontroller;
public class AdLibsRtf
{
public static void main(String[] args)
{
// Create a new 'word' container your story's words (uncomment line 10) --#1.1
// Words word = new Words();
// Ask the user to enter an adverb, save it as currentAdverb --#2
// Ask the user to enter a verb ending in '-ed', save it as currentEdVerb --#3
// Ask the user to enter a body part, save it as currentBodyPart --#4
// Connect the words in the currentStory to an RTF file parser (use the Parser object) --#1.2
// Display the currentStory in an RTF file (use the Viewer object) --#1.3
}
}