OnJava8-Examples/operators/HelloDate.java
Bruce Eckel 49edcc8b17 reorg
2015-06-15 17:47:35 -07:00

15 lines
320 B
Java

//: operators/HelloDate.java
// ©2015 MindView LLC: see Copyright.txt
import java.util.*;
import static com.mindviewinc.util.Print.*;
public class HelloDate {
public static void main(String[] args) {
print("Hello, it's: ");
print(new Date());
}
} /* Output:
Hello, it's:
Mon Jun 15 15:47:53 PDT 2015
*///:~