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
We can't run a Java program without
public static void main(String[] args) { }
The program only executs the main method. In the main method you can create objects like
Elevator elevator = new Elevator();
You can put the main method anywhere.