Problem
When i run my HelloWorld, it returns:
"java.lang.UnsupportedClassVersionError: HelloWorld has been compiled by a more recent version of the Java Runtime (class file version 52.65535), this version of the Java Runtime only recognizes class file versions up to 52.0 "
How do I solve this problem?
Screenshot
Code
public class HelloWorld{
public static void main(String[] args) {
System.out.println("123");
}
}