PPT Slide
import java_cup.runtime.*;
terminal String FIELD, SLASH, EOL;
non terminal books, book;
book ::= FIELD:f1 SLASH FIELD:f2 SLASH FIELD:f3 SLASH FIELD:f4 SLASH FIELD:f5 EOL
{: System.out.println("<Book>");
System.out.println(" <Title>" + f1 + "</Title>");
System.out.println(" <Author>" + f2 + "</Author>");
System.out.println(" <Date>" + f3 + "</Date>");
System.out.println(" <ISBN>" + f4 + "</ISBN>");
System.out.println(" <Publisher>" + f5 + "</Publisher>");
System.out.println("</Book>");