first steps of the lexer
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
public class Lexer {
|
||||
Lexer(String src_in) {
|
||||
System.out.println(src_in);
|
||||
}
|
||||
|
||||
public void run() {
|
||||
System.out.println("Lexer runs.");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user