OnJava8-Examples/operators/HelloDate.java
2015-09-07 11:44:36 -06:00

16 lines
315 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
*/