Module ASP_parser

module ASP_parser: sig .. end

type token = 
| Word of string
| Eof
| LPAREN
| RPAREN
| COMMA
val solution : (Lexing.lexbuf -> token) ->
Lexing.lexbuf -> (string * string list) list