%% %{ /* idea here is to strip comments out of C code. */ /* INITIAL is the default start state. Comment is our new */ /* state where we remove comments. */ %} %class ex2 %unicode %line %column %state COMMENT %standalone %% "//".* {} "/*" {yybegin(COMMENT);} \r {} . {System.out.print(yytext());} [\n] {System.out.print(yytext());} "*/" {yybegin(YYINITIAL);} . {} [\n] {}