import java.awt.*;
public class AwtLabelTestProg {
public static void main (String [] args) {
Frame f = new Frame ();
f.setSize (300, 400);
f.setLocation (100, 100);
f.setVisible (true);
Label l = new Label ("Hallo Welt");
f.add (l);
}
}