From ae2ed5d7a3d0b6981e9560ff76141f51a0656294 Mon Sep 17 00:00:00 2001 From: physick Date: Wed, 22 Jul 2026 14:23:37 +0500 Subject: Java impl init --- jlox/app/src/main/java/org/example/App.java | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 jlox/app/src/main/java/org/example/App.java (limited to 'jlox/app/src/main/java') diff --git a/jlox/app/src/main/java/org/example/App.java b/jlox/app/src/main/java/org/example/App.java new file mode 100644 index 0000000..e7e1af9 --- /dev/null +++ b/jlox/app/src/main/java/org/example/App.java @@ -0,0 +1,14 @@ +/* + * This source file was generated by the Gradle 'init' task + */ +package org.example; + +public class App { + public String getGreeting() { + return "Hello World!"; + } + + public static void main(String[] args) { + System.out.println(new App().getGreeting()); + } +} -- cgit v1.3