TelloViz / CPSC323-Compiler

My Compiler Project for CPSC323 : Compilers
2 stars 0 forks source link

Result Output Stream #2

Closed TelloViz closed 3 years ago

TelloViz commented 3 years ago

Part of the assignment is to output the results of your lexical analysis to a text file.

The should be in a table format such as this:

A simple test case
(Partial) Source code:

while (fahr <= upper) a = 23.00; /* this is sample */

Output:

token lexeme
keyword while
separator (
identifier fahr
operator <=
identifier upper
separator )
identifier a
operator =
real 23.00
Separator ;
TelloViz commented 3 years ago

2 developers left with assigned tasks that I will now take on.

TelloViz commented 3 years ago

The design portion is Closed with #28