Hi guys, so I started learning Java 2 minutes ago and I have already encountered an error. The error is Error: Could not find or load main class apples.class and I get it after I use the cmd to type java apples.class . Here is the code I compiled to get that apples.class
class apples
{
public static void main(String args[])
{
System.out.println("Hello youtube!");
}
}
So any idea where my mistake is?