%{ open Ast %}

%token HTML EOF

%start expr
%type <string> keyword

%%

keyword:
  HTML     {"<html>"}
