This repository has been archived on 2026-05-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
University-Basics-of-Progra…/Exercise 5/LexerTestApp.java
T
2023-06-08 15:26:01 +02:00

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();
}
}