posted 19 years ago
What am I doing wrong with this code from HeadFirst?
C:\AllMyFiles\Java\HeadFirst>type party.java
import java.awt.*;
import java.awt.event.*;
class Party {
public void buildInvite(){
Frame f = new Frame();
Label l = new Label("Party at Tim's");
Button b = new Button("You bet");
Button c = new Button("Shoot me");
Panel p = new Panel();
p.add(l);
} //more code here
}
C:\AllMyFiles\Java\HeadFirst>javac party.java
C:\AllMyFiles\Java\HeadFirst>java Party
Exception in thread "main" java.lang.NoSuchMethodError: main
Thanks,
Russ