From a22b3bfd2a6e394855cb1cac3ae67ad6882980cf Mon Sep 17 00:00:00 2001 From: Ryo Nihei Date: Sun, 14 Feb 2021 00:47:12 +0900 Subject: Add compiler The compiler takes a lexical specification expressed by regular expressions and generates a DFA accepting the tokens. Operators that you can use in the regular expressions are concatenation, alternation, repeat, and grouping. --- go.mod | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 go.mod (limited to 'go.mod') diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..62794f2 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module github.com/nihei9/maleeni + +go 1.15 -- cgit v1.2.3