2015-09-07 11:44:36 -06:00
|
|
|
|
// operators/HelloDate.java
|
2015-06-15 17:47:35 -07:00
|
|
|
|
// <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());
|
|
|
|
|
}
|
2015-09-07 11:44:36 -06:00
|
|
|
|
}
|
|
|
|
|
/* Output:
|
2015-06-15 17:47:35 -07:00
|
|
|
|
Hello, it's:
|
|
|
|
|
Mon Jun 15 15:47:53 PDT 2015
|
2015-09-07 11:44:36 -06:00
|
|
|
|
*/
|