2024-12-19 23:55:07 +01:00

9 lines
245 B
Java

class Main {
public static void main(String args[]) throws java.io.IOException {
browserlexer b =
new browserlexer (new java.io.InputStreamReader(System.in));
int ret = b.yylex();
while (ret != -1) { ret = b.yylex(); }
}
}