Files
compiler-the-translators/lexicalStructure.lex
2025-02-05 16:56:27 -05:00

13 lines
252 B
Plaintext

/* Lexical Analysis with Flex (2.6.0) We used some of the code from this manual */
/* so we placed the citation here. */
/* definitions */
%option noyywrap
%{
#include <typedefs.h>
%}
%%
//rules
%%
//user code