I was following this tutorial for learning how to create a Compiler in c++. But in the tutorial the author created tokens.I
file for lexical analysis.
Can anyone please tell me what is .I
extension used for ??
Thank You
The extension is actually .l
(lowercase L), which is used for a "lex" file.