Lolcode execution

profilesaiiaf1992
README.txt

This is the program to detect lex tokens using flex and C/C++. CDCFlex.l is the flex program to detect tokens from LOLCODE. It has all the tokens and keywords that are used in LOLCODE. To execute this program there are three main commands. 1. "flex CDCFlex.l" is the command to convert flex program to C creating lex.yy.c 2. "gcc lex.yy.c -o exe" is the command to compile lex.yy.c, creating an executable exe 3. "exe < LOLCODE.txt" is the command to run the exe and take input lolcode.txt file The output of the program will be list of tokens printing in the command prompt.