From 4a9b3428fd98e21eaa4d5bc00086f61a0d3d4491 Mon Sep 17 00:00:00 2001 From: Marc Coquand Date: Tue, 26 Dec 2023 13:29:29 -0600 Subject: Support more than 1 many-relations --- lib/lexer.mll | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/lexer.mll') diff --git a/lib/lexer.mll b/lib/lexer.mll index c6f2b93..e2f6469 100644 --- a/lib/lexer.mll +++ b/lib/lexer.mll @@ -15,6 +15,7 @@ let id = ['a'-'z' 'A'-'Z' '-']* let newline = '\r' | '\n' | "\r\n" let many_newline = newline+ +(* TODO: Support _ and - in identifiers *) rule read = parse | "uuidv4" { UUIDV4 } -- cgit v1.2.3