From 418f609d22ab8174b41e42cd01e8282f303c7d0e Mon Sep 17 00:00:00 2001 From: teshan2007 <72141643+teshan2007@users.noreply.github.com> Date: Mon, 30 Oct 2023 23:56:09 +0530 Subject: [PATCH] HelloWorld.java That's your and something new for new ones --- src/main/java/com/coveros/demo/helloworld/HelloWorld.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/coveros/demo/helloworld/HelloWorld.java b/src/main/java/com/coveros/demo/helloworld/HelloWorld.java index ae297a90..124c349c 100644 --- a/src/main/java/com/coveros/demo/helloworld/HelloWorld.java +++ b/src/main/java/com/coveros/demo/helloworld/HelloWorld.java @@ -9,7 +9,8 @@ public static void main(final String[] args) { final DateTimeFormatter dtf = DateTimeFormatter.ofPattern("h:mm:ss a 'on' MMMM d, yyyy'.'"); final LocalDateTime now = LocalDateTime.now(); - System.out.println("Hello, World! The current time is " + dtf.format(now)); + System.out.println("Hello, World! The current time is " + dtf.format(now) + "you are entered in the worldof programming"); + } }