17 lines
434 B
Markdown
17 lines
434 B
Markdown
# 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.* |