OnJava8-Examples/HelloDate.java

11 lines
231 B
Java
Raw Normal View History

2015-09-07 11:29:31 -06:00
// HelloDate.java
2015-11-14 16:18:05 -08:00
// <20>2016 MindView LLC: see Copyright.txt
2015-09-07 11:29:31 -06:00
import java.util.*;
public class HelloDate {
public static void main(String[] args) {
System.out.println("Hello, it's: ");
System.out.println(new Date());
}
}