15 lines
320 B
Java
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
|
|
*///:~
|