Initialize Jlox

This commit is contained in:
ctsk
2022-09-02 22:08:24 +02:00
parent 1b0003e586
commit 9510b57e11
9 changed files with 404 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
package xyz.ctsk.jlox;
public class Hello {
public static void main(String[] arg) {
System.out.println("Hello World");
}
}