when I try to compile this java file this error appears
Error message:
Exception in thread "main" java.lang.NoClassesDefFoundError: City/java
This is my code:
public class City
{
public static void main ( String args[] )
{
String city= "Connecticut"
System.out.println("city");
}
}