From d4708ae3228822035c72be142cc393938547493b Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 14 Feb 2024 02:41:33 +0200 Subject: [PATCH] Add README.md for phase 1 --- 01_lexer/README.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 01_lexer/README.md diff --git a/01_lexer/README.md b/01_lexer/README.md new file mode 100644 index 0000000..6250f04 --- /dev/null +++ b/01_lexer/README.md @@ -0,0 +1,9 @@ +This directory contains a lexer implemented in PLY. + +The python script supports CLI arguments + + [-h|--help] to show usage + --who to print my name and student number + [-f|--file] to specify filename to perform lexical analysis on + +Tokens are parsed according to the instructions in plussa with the optional int delimeters. After successfull parsing, the program will print out all found tokens. \ No newline at end of file