From 09a35491dace0f7fe39b28bbd7ef3da1ebb09236 Mon Sep 17 00:00:00 2001 From: Lotes Date: Mon, 16 Apr 2018 09:50:41 +0200 Subject: [PATCH] update README.md --- README.md | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8101933..8497a0e 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,24 @@ # how-to-build-a-lexer -Practicing compiler construction by building a lexer +Practicing compiler construction by building a lexer. + +See the [documentation folder](/docs) for detailed information. It does not contain code. But it describes the background of the code. + +## `Main` project + +The `Main` project contains a regular expression parser prompt. + +``` +Please enter a regular expression! +> [a-z][a-z0-9]* +start: 1 +ends: 0 +0 --[48-57],[97-122]--> 0 +1 --[97-122]--> 0 + +Please enter a regular... +... +``` + +## License + +[MIT](/LICENSE) \ No newline at end of file