commit ac9d8b4903da4a6f62ddb34cb27c7eb53732bd16 parent 24e56286205ee1b9dffe1bd42d56f2f47388f081 Author: Jake Bauer <jbauer@paritybit.ca> Date: Wed, 17 May 2023 19:22:51 -0400 Simple hello world Diffstat:
A | hello-world/HelloWorld.java | | | 7 | +++++++ |
1 file changed, 7 insertions(+), 0 deletions(-)
diff --git a/hello-world/HelloWorld.java b/hello-world/HelloWorld.java @@ -0,0 +1,7 @@ +// Just a simple hello world example + +public class HelloWorld { + public static void main(String[] args) { + System.out.println("Hello, world!"); + } +};