* Copy the file simplejava.jj from the previous project into this directory. * Add grammar rules to simplejava.jj for parsing simpleJava. Be sure that the top-level rule in your grammar is named program(). * Compile with: % javacc simplejava.jj % javac *.java * Test with % java ParseTest Included files: ParseTest.sjava test1.sjava test2.sjava test3.sjava