Script started on Tue 26 Feb 2008 12:46:16 AM CST vulcan6.cis.uab.edu% jflex PL0.jflex Reading "PL0.jflex" Constructing NFA : 144 states in NFA Converting NFA to DFA : .................................................................... 70 states before minimization, 66 states in minimized DFA Writing code to "PL0Lexer.java" vulcan6.cis.uab.edu% java -jar java-cup-11a.jar -parser PL0Parser -symbols Symbol PL0.cup ------- CUP v0.11a beta 20060608 Parser Generation Summary ------- 0 errors and 0 warnings 31 terminals, 16 non-terminals, and 41 productions declared, producing 77 unique parse states. 0 terminals declared but not used. 0 non-terminals declared but not used. 0 productions never reduced. 0 conflicts detected (0 expected). Code written to "PL0Parser.java", and "Symbol.java". ---------------------------------------------------- (v0.11a beta 20060608) vulcan6.cis.uab.edu% javac PL0Pars.java vulcan6.cis.uab.edu% java PL0Pars < quotrem.pl0 Source Program -------------- var q, r, x, y; begin x := 32; y := 5; q := 0; r := x; while r >= y do begin q := q + 1; r := r - y end end. vulcan6.cis.uab.edu% exit Script done on Tue 26 Feb 2008 12:47:29 AM CST