import java.io.IOException; public class CompoundFeatureDemo { public static void main( String[] args ) throws IOException { Play thePlay = new Play( args[0] ); int wordLength = Integer.parseInt( args[1] ); char firstChar = args[2].charAt( 0 ); TestRunner demo = new TestRunner( thePlay, wordLength, firstChar ); demo.run(); } }