10 lines
258 B
Java
10 lines
258 B
Java
public class LexerTestApp {
|
|
public static void main(String[] Args) {
|
|
// Meldung bei Programmaufruf
|
|
System.out.println("Lexer Test App.");
|
|
|
|
Lexer this_Lexer = new Lexer("index = 2 * count + 42;");
|
|
this_Lexer.run();
|
|
}
|
|
}
|