I have a short question i have wrote this in java. Old code:
class apples{
public static void main(String args[]){
System.out.println("hello Youtube");
}
}
New code
public class apples{
public static void main(String args[]){
System.out.println("hello Youtube");
}
}
Eclipse give me this error:
Error: Could not find or load main class apples
What am I doing wrong? I am watching this tutorial from bucky : Youtube
Second Question:
In the tutorial there is something like Auto complete. How can I turn this on in eclipse?
FIXED: openend a file instead of class thanks for al the help!