%token CREATE PAGE

%start main
%token EOL
%type <string> main

%%
main:
	expr EOL { $1 }
;

expr:
	CREATE PAGE {print_string "<html>"}