diff --git a/hello_world.java b/hello_world.java new file mode 100644 index 0000000..6634e98 --- /dev/null +++ b/hello_world.java @@ -0,0 +1,8 @@ +public class HelloWorld { + + public static void main(String[] args) { + // Prints "Hello, World" to the terminal window. + System.out.println("Hello, World"); + } + +} \ No newline at end of file