/* * Example Time * Prints a greeting message with the current time. */ import java.util.*; public class Time { public static void main(String[] args) { System.out.println("Hello!"); System.out.println("The time is " + new Date()); } }