Norm, thank you; I found a way to do it see below, not prity but it worked. The trick was the import string I tried did not work.
package com.allmycode.first;
import java.util.Date;
public class GoodbyeMoon {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
String var1 = "GoodbyeMoon";
int var2 = 10;
Date date = new Date();
System.out.println("Today is " + date);
System.out.println(var1+" "+ var2);
String var3 = "Done";
System.out.println(var3);
}
}