%{ open Ast %}

%token HTML EOF

%start keyword
%type <string> keyword

%%

keyword:
  HTML     {"<html>"}
