%% %include Jflex.include %{ void echo(String s) { System.out.print(s); } %} %eof{ /*just to see the end of file */ System.out.println("Fin"); %eof} %% ">" { echo(" "); } "<" { echo("\t\t"); } "+" { echo("\t "); } "-" { echo(" \t"); } "[" { echo(" \n"); } "]" { echo("\n "); } "." { echo("\n\t"); } "," { echo("\t\n"); } [^] {}