From dba9165d57d96347312f5c9f9181d7619a68b629 Mon Sep 17 00:00:00 2001 From: faisalkholid Date: Tue, 15 Oct 2019 03:55:19 +0800 Subject: [PATCH 1/2] create helloword.java --- helloworld.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 helloworld.java diff --git a/helloworld.java b/helloworld.java new file mode 100644 index 0000000..9a89998 --- /dev/null +++ b/helloworld.java @@ -0,0 +1,12 @@ +/* This is a simple Java program. + FileName : "Helloworld.java". */ + +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"); + } +} From 7c49fdbbd93a683464fb4d844470d5567dfc1e47 Mon Sep 17 00:00:00 2001 From: faisalkholid Date: Tue, 15 Oct 2019 03:56:21 +0800 Subject: [PATCH 2/2] Update helloworld.java --- helloworld.java | 1 - 1 file changed, 1 deletion(-) diff --git a/helloworld.java b/helloworld.java index 9a89998..4afbdae 100644 --- a/helloworld.java +++ b/helloworld.java @@ -3,7 +3,6 @@ class HelloWorld { - // Your program begins with a call to main(). // Prints "Hello, World" to the terminal window. public static void main(String args[]) {