Completed task1 objectives t#30

This commit is contained in:
Scarlett
2025-02-21 16:18:38 -05:00
parent 5171e4bc86
commit 5505d11d21
4 changed files with 45 additions and 4 deletions

17
README.MD Normal file
View File

@ -0,0 +1,17 @@
# The Translators α Compiler
#### Members: Annie Slenker, Meyer Simon, Partho Bhattacharya, & Scarlett Kadan
## Lexical Analyzer
* **Undefined Behavior:**
* Spaces are not required between tokens. For instance, an INTEGER and an ID are valid even if there is no space between them
```
Input: *5variable*
Output: 2 14 301 "5"
1 1 101 "variable"
```
## Syntax Analyzer
* *Incomplete*
## Symbol Table
* *TODO: Create diagram.*