diff --git a/Helllo.java b/Helllo.java new file mode 100644 index 0000000000..1c25ce27e7 --- /dev/null +++ b/Helllo.java @@ -0,0 +1,9 @@ +class HelloWorld +{ + // 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