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