This question already has an answer here:
I can run following code in Eclipse without any problem:
import java.applet.Applet;
import java.awt.Color;
import java.awt.Graphics;
public class Rect extends Applet {
public void paint(Graphics g) {
g.setColor(Color.ORANGE);
g.drawRect(10, 60, 40, 30);
g.fillRect(10, 60, 40, 30);
}
}
but when I try to run the exact same code from terminal by typing using 'javac' & 'java' commands I get this error:
Exception in thread "main" java.lang.NoSuchMethodError: main
How can I run this exact programs in terminal flawlessly & what is the reason behind this?

javais going to be ... rather difficult. – Brian Roach Feb 25 at 19:55public static void mainmethod. – vikingsteve Feb 25 at 19:56