diff --git a/hello world b/hello world new file mode 100644 index 0000000..dae9c2b --- /dev/null +++ b/hello world @@ -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"); + } +}