OnJava8-Examples/operators/HelloDate.java

15 lines
320 B
Java
Raw Normal View History

2015-06-15 17:47:35 -07:00
//: operators/HelloDate.java
// <20>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
*///:~