That is, in fact, decided to learn the Java language. To do this, he began to study the "Java Philosophy" of B.Eckel, but got stuck on the very first program.
import java util.*; public class HelloDate { public static void main (String[] args){ System.out.println("Hello. Today is "); System.out.println(new Date()); } }
I try to compile in eclipse, but it gives an error in the first line. As I understand it, this is related to the JRE libraries. Actually, could you tell me what the problem is and how to solve it?