import figue.*; import java.awt.Frame; public final class HelloWorld { public final static void main(String[] args) { final AWTFacade theFacade = new AWTFacade(); final Frame theAppli = new Frame("Hello World"); theAppli.setBounds(50,50,300,100); theAppli.add(theFacade.getAwtComponent()); theAppli.validate(); theAppli.setVisible(true); PathInterface thePath = new Path(); thePath.addOperation(new InsertGlyph(Atom.newAtom("Hello World"),0)); theFacade.buildInit(thePath); theFacade.buildComplete(); } }