From 04acb61f6aa41b865283c62227f53c5d77178c5f Mon Sep 17 00:00:00 2001 From: Kaito Arai Date: Tue, 16 May 2017 15:48:58 +0100 Subject: [PATCH 1/2] Testing Lab00 --- Hello World/src/main/HelloWorld.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Hello World/src/main/HelloWorld.java b/Hello World/src/main/HelloWorld.java index 11b2140..17c3dd5 100644 --- a/Hello World/src/main/HelloWorld.java +++ b/Hello World/src/main/HelloWorld.java @@ -5,7 +5,7 @@ public static void main(String[] args) { // This is a comment. Java comments are preceded by "//". Remove the // "//" in the line bellow to uncomment it. - // System.out.prinln("Hello World"); + System.out.println("Hello World"); // Run the program by pressing the green play button in the tool bar. } From 530e42c821ca0dd1437a9951e7f52b01b83239dc Mon Sep 17 00:00:00 2001 From: Kaito Arai Date: Thu, 16 Nov 2017 16:57:00 +0000 Subject: [PATCH 2/2] Commented the println --- Hello World/src/main/HelloWorld.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Hello World/src/main/HelloWorld.java b/Hello World/src/main/HelloWorld.java index 17c3dd5..1b523d8 100644 --- a/Hello World/src/main/HelloWorld.java +++ b/Hello World/src/main/HelloWorld.java @@ -5,7 +5,7 @@ public static void main(String[] args) { // This is a comment. Java comments are preceded by "//". Remove the // "//" in the line bellow to uncomment it. - System.out.println("Hello World"); + //System.out.println("Hello World"); // Run the program by pressing the green play button in the tool bar. }