Commit 99dbe513 by elias.oliveira

Delete HelloWorld.java

parent fd63eb62
package com.coveros.demo.helloworld;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
public class HelloWorld {
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));
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment