I\'m new in programing and I like it pretty much. I\'ve just downloaded Eclipse and I got an error I can\'t help me with. Unfortunately it\'s in German but the meaning is someth
when you run java it runs main method that i don't see in your class so basically eclipse is telling you: "what do you want me to run?", you should implement it:
public static void main(String[] args){
// code here
}