From ac952d245804d120b6e9bb15db7dd1f8e8824baa Mon Sep 17 00:00:00 2001 From: mehmet48 Date: Sat, 28 Oct 2017 20:19:32 +0300 Subject: [PATCH] Create javahelloworld.java --- javahelloworld.java | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 javahelloworld.java diff --git a/javahelloworld.java b/javahelloworld.java new file mode 100644 index 0000000..6d50415 --- /dev/null +++ b/javahelloworld.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"); + } + +}