CSC362.L01, Lab 4: Lex Admin: * Missing: Ananta, Piper (ill), Choed (writing essay) * No introductory discusison; Start the lab Topics: * lex/flex Notes: * See silly.yy for an example of how to use flex to return values to another procedure. * What do you expect to happen with the following upon input of * "Hello World" * " 29 July 2004" [ \n\t]* { printf("WHITESPACE[%s]\n", yytext); } .* { printf("OTHER[%s]\n", yytext); }