OnJava8-Examples/operators/HelloDate.java
2015-05-29 14:18:51 -07:00

15 lines
329 B
Java

//: operators/HelloDate.java
// ©2015 MindView LLC: see Copyright.txt
import java.util.*;
import static net.mindview.util.Print.*;
public class HelloDate {
public static void main(String[] args) {
print("Hello, it's: ");
print(new Date());
}
} /* Output: (55% Match)
Hello, it's:
Wed Oct 05 14:39:05 MDT 2005
*///:~